forked from stefanha/git-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 772 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from distutils.core import setup
setup(name='git-publish',
version='1.2.0.1',
description='Patch series management tool for git',
long_description='Prepare and store patch series as git tags',
url='https://github.com/stefanha/git-publish/',
author='Stefan Hajnoczi',
author_email='stefanha@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Topic :: Software Development',
],
keywords='git patch series management',
scripts=['git-publish'],
)