You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
503 B
Python
28 lines
503 B
Python
2 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
|
||
|
from setuptools import setup
|
||
|
|
||
|
|
||
|
__version__ = "0.0.0"
|
||
|
|
||
|
|
||
|
with open("requirements.txt") as f:
|
||
|
deps = f.read().split()
|
||
|
|
||
|
|
||
|
setup(name='package',
|
||
|
version=__version__,
|
||
|
description='description',
|
||
|
url='',
|
||
|
author='dpedu',
|
||
|
author_email='dave@davepedu.com',
|
||
|
packages=['package'],
|
||
|
install_requires=deps,
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"packagecli = package.cli:main",
|
||
|
]
|
||
|
},
|
||
|
zip_safe=False)
|