-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 849 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(
name='setuptools-git-version',
version='1.0.4',
url='https://github.com/pyfidelity/setuptools-git-version',
author='pyfidelity UG',
author_email='mail@pyfidelity.com',
description='Automatically set package version from Git.',
license='http://opensource.org/licenses/MIT',
classifiers=[
'Framework :: Setuptools Plugin',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
py_modules=['setuptools_git_version'],
install_requires=[
'setuptools >= 8.0',
],
entry_points="""
[distutils.setup_keywords]
version_format = setuptools_git_version:validate_version_format
version_files = setuptools_git_version:write_version_files
""",
)