forked from ygingras/setuptools-git
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
42 lines (39 loc) · 1.4 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
version = '1.2'
setup(
name="setuptools-git",
version=version,
maintainer='Marc Abramowitz',
maintainer_email='[email protected]',
author="Yannick Gingras",
author_email="[email protected]",
url="https://github.com/msabramo/setuptools-git",
keywords='distutils setuptools git',
description="Setuptools revision control system plugin for Git",
long_description=open('README.rst').read(),
license='BSD',
packages=find_packages(),
test_suite='setuptools_git',
zip_safe=True,
classifiers=[
"Topic :: Software Development :: Version Control",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
entry_points="""
[setuptools.file_finders]
git=setuptools_git:listfiles
[distutils.setup_keywords]
use_vcs_version=setuptools_git:version_calc
"""
)