File: setup.py

package info (click to toggle)
python-versioneer 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 648 kB
  • sloc: python: 2,656; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (2)
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,
      )