nucypher/setup.py

28 lines
951 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2017-08-18 14:15:36 +00:00
VERSION = '0.1'
2017-08-18 14:15:36 +00:00
# NOTE: Use Pipfile & Pipfile.lock to manage dependencies\
INSTALL_REQUIRES = []
TESTS_REQUIRE = []
2017-08-18 17:09:10 +00:00
2018-05-08 19:35:34 +00:00
setup(name='nucypher',
version=VERSION,
2018-05-08 19:35:34 +00:00
description='A proxy re-encryption network to empower privacy in decentralized systems.',
2017-08-18 14:15:36 +00:00
install_requires=INSTALL_REQUIRES,
2017-08-18 17:21:33 +00:00
extras_require={'testing': TESTS_REQUIRE},
packages=find_packages(),
2018-05-08 19:35:34 +00:00
package_data={'nucypher': [
'blockchain/eth/*', 'project/contracts/*',
'blockchain/eth/sol_source/contracts/lib/*',
'blockchain/eth/sol_source/contracts/zepellin/math/*',
'blockchain/eth/sol_source/contracts/zepellin/ownership/*',
'blockchain/eth/sol_source/contracts/zepellin/token/*']},
include_package_data=True,
entry_points='''
[console_scripts]
nucypher-cli=nucypher_cli.main:cli
'''
)