forked from hove-io/githubflow_release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.08 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
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import githubflow_release
from setuptools import setup
requirements = [
'clingon',
'GitPython',
'requests',
'semver'
]
version = '0.0.1' # TODO use git tag ;)
setup(
name='githubflow_release',
version=version,
description="github flow release",
author="Antoine Desbordes",
author_email='[email protected]',
url='https://github.com/CanalTP/githubflow_release',
packages=[
'githubflow_release',
],
package_dir={'githubflow_release': 'githubflow_release'},
include_package_data=True,
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords='cli',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
entry_points={'console_scripts': [
'githubflow_release = githubflow_release.release:release',
]},
)