-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (36 loc) · 1.17 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as fp:
requirements = fp.read()
version = '0.0.3' # 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/hove-io/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',
'Programming Language :: Python :: 3.6',
],
entry_points={'console_scripts': [
'githubflow_release = githubflow_release.run:main',
'githubflow_get_new_version = githubflow_release.new_version:main',
]},
)