File: setup.py

package info (click to toggle)
python-get-version 2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 124 kB
  • sloc: python: 236; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

install_requires = \
['setuptools']

extras_require = \
{'test': ['pytest', 'pytest-cov', 'testpath', 'pygments'],
 'test:python_version != "3.5"': ['pytest-black']}

setup(name='get_version',
      version='2.1',
      description='A version helper in the spirit of versioneer.',
      author='Philipp Angerer',
      author_email='phil.angerer@gmail.com',
      url='https://github.com/flying-sheep/get_version',
      py_modules=['get_version'],
      install_requires=install_requires,
      extras_require=extras_require,
      python_requires='>=3.6',
     )