nucypher/setup.py

24 lines
749 B
Python
Raw Normal View History

2017-08-19 19:10:43 +00:00
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
INSTALL_REQUIRES = [
]
2017-08-18 14:15:36 +00:00
2017-08-18 17:21:33 +00:00
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)