30 lines
804 B
Python
30 lines
804 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
__version__ = "0.0.0"
|
|
|
|
|
|
setup(name='pydebmirror',
|
|
version=__version__,
|
|
description='Debian repository management tool',
|
|
url='',
|
|
author='dpedu',
|
|
author_email='dave@davepedu.com',
|
|
packages=['pydebmirror'],
|
|
install_requires=[],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"pydebmirror = pydebmirror.cli:main",
|
|
"pydebmirror2 = pydebmirror.cli2:main",
|
|
]
|
|
},
|
|
# include_package_data=True,
|
|
# package_data={'photoapp': ['../templates/*.html',
|
|
# '../templates/fragments/*.html',
|
|
# '../styles/dist/*',
|
|
# '../assets/img/*']},
|
|
# zip_safe=False
|
|
)
|