1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass().copy()
# Updating our updated commands should be safe
commands = versioneer.get_cmdclass(commands).copy()
setup(name="demoapp2",
version=versioneer.get_version(),
description="Demo",
url="url",
author="author",
author_email="email",
zip_safe=True,
packages=["demo"],
package_dir={"": "src"},
entry_points={
'console_scripts': [ 'rundemo = demo.main:run' ],
},
install_requires=["demolib==1.0"],
cmdclass=commands,
)
|