2017-08-19 19:10:43 +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
|
|
|
INSTALL_REQUIRES = [
|
2017-09-01 22:55:39 +00:00
|
|
|
]
|
2017-08-18 14:15:36 +00:00
|
|
|
|
2017-08-18 17:21:33 +00:00
|
|
|
TESTS_REQUIRE = [
|
2018-04-11 00:03:21 +00:00
|
|
|
]
|
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-04-11 00:03:21 +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-06-06 03:09:37 +00:00
|
|
|
include_package_data=True)
|