-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (46 loc) · 1.43 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
from hydra.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
install_requires = []
with open('requirements.txt') as f:
for line in f.read().splitlines():
install_requires.append(line)
setup(
name='shipchain-hydra',
version=VERSION,
description='Hydra manages many heads of networks',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Lee Bailey',
author_email='lbailey@shipchain.io',
url='https://github.com/shipchain/hydra',
license='Apache-2.0',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords=[
'blockchain',
'shipchain',
'loomnetwork',
'loom',
'hydra',
],
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'hydra': ['templates/*']},
include_package_data=True,
install_requires=install_requires,
entry_points="""
[console_scripts]
hydra = hydra.main:main
""",
)