forked from urga/versionfromgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 817 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'''Setup file for versionfromgit.'''
from setuptools import setup
from versionfromgit import __version__
setup(
name='versionfromgit',
version=__version__,
packages=['versionfromgit'],
description="Utility to version python projects that dont't use distutils, using git tags.",
author='Dries Desmet',
author_email='[email protected]',
include_package_data=True,
test_suite='tests',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Version Control',
],
)