2018-08-05 03:45:09 +00:00
|
|
|
from setuptools import setup, find_packages
|
2017-08-18 14:15:36 +00:00
|
|
|
|
2018-04-11 00:03:21 +00:00
|
|
|
VERSION = '0.1'
|
|
|
|
|
2017-08-18 14:15:36 +00:00
|
|
|
|
2018-07-19 18:40:28 +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',
|
2018-04-11 00:03:21 +00:00
|
|
|
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},
|
2018-08-05 03:45:09 +00:00
|
|
|
packages=find_packages(),
|
2018-05-08 19:35:34 +00:00
|
|
|
package_data={'nucypher': [
|
2018-04-11 00:03:21 +00:00
|
|
|
'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/*']},
|
2018-07-19 18:40:28 +00:00
|
|
|
include_package_data=True,
|
|
|
|
entry_points='''
|
2018-07-19 23:00:25 +00:00
|
|
|
[console_scripts]
|
|
|
|
nucypher-cli=nucypher_cli.main:cli
|
|
|
|
'''
|
2018-07-19 18:40:28 +00:00
|
|
|
)
|