mirror of https://github.com/nucypher/nucypher.git
Create nucypher-cli entry point in setup.py
parent
4aa45f9c09
commit
60cf1d70d0
18
setup.py
18
setup.py
|
@ -1,23 +1,27 @@
|
|||
from setuptools import setup, find_packages
|
||||
from setuptools import setup
|
||||
|
||||
VERSION = '0.1'
|
||||
|
||||
INSTALL_REQUIRES = [
|
||||
]
|
||||
|
||||
TESTS_REQUIRE = [
|
||||
]
|
||||
# NOTE: Use Pipfile & Pipfile.lock to manage dependencies\
|
||||
INSTALL_REQUIRES = []
|
||||
TESTS_REQUIRE = []
|
||||
|
||||
setup(name='nucypher',
|
||||
version=VERSION,
|
||||
description='A proxy re-encryption network to empower privacy in decentralized systems.',
|
||||
install_requires=INSTALL_REQUIRES,
|
||||
extras_require={'testing': TESTS_REQUIRE},
|
||||
packages=find_packages(),
|
||||
packages=['nucypher'],
|
||||
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)
|
||||
include_package_data=True,
|
||||
entry_points='''
|
||||
[console_scripts]
|
||||
nucypher-cli=cli.main:cli
|
||||
'''
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue