forked from pyfidelity/setuptools-git-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.08 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.08 KB
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
28
29
30
from setuptools import setup
setup(
name='setuptools-git-version-cc',
version='3.0.4',
author='Rokubun',
author_email='info@rokubun.cat',
description='Automatically set package version from Git using Conventional Commit standard.',
long_description="""# Conventional Commit Semantic Version generator!\n\n Automatically set package version from Git using Conventional Commit standard.""",
long_description_content_type='text/markdown',
license='http://opensource.org/licenses/MIT',
url="https://github.com/rokubun/setuptools-git-version-cc",
classifiers=[
'Framework :: Setuptools Plugin',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
py_modules=['setuptools_git_version_cc'],
install_requires=[
'setuptools >= 8.0',
],
entry_points="""
[distutils.setup_keywords]
version_cc = setuptools_git_version_cc:get_git_version_cc
[console_scripts]
get_version = setuptools_git_version_cc:entry_point
""",
)