-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (26 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
from setuptools import setup
from Theseus.version import __version__, __build__
# Work around mbcs bug in distutils.
# http://bugs.python.org/issue10945
import codecs
try:
codecs.lookup('mbcs')
except LookupError:
ascii_codec = codecs.lookup('ascii')
func = lambda name, enc=ascii_codec: {True: enc}.get(name == 'mbcs')
codecs.register(func)
setup(
name='theseus',
version=__version__,
build=__build__,
packages=['Theseus','Theseus.Protocols', 'Theseus.Common', 'Theseus.Daedalus', 'Theseus.Cardano', 'Theseus.Tests'],
url='https://github.com/input-output-hk/theseus',
license='MIT',
author='[email protected]',
author_email='[email protected]',
description='a system for orchestrating tests for IOHK projects',
install_requires=['typing', 'mnemonic', 'pyblake2', 'base58', 'requests', 'urllib3', 'paramiko', 'unittest2', 'sphinx', 'nose', 'nose_xunitmp', 'sphinx_autodoc_napoleon_typehints'],
zip_safe=True
)
__author__ = 'Amias Channer <[email protected]> for IOHK'