-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.3 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
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.rst")) as file:
long_description = file.read()
setup(
name='gitbot',
version='0.5',
description='Automatically label GitHub issues based on regexp rules.',
long_description=long_description,
author='Martin Melka',
author_email='[email protected]',
license='MIT',
keywords='github,labeling,issues',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Bug Tracking'
],
url='https://github.com/melkamar/gitbot',
include_package_data=True,
packages=find_packages(),
entry_points={
'console_scripts': [
'gitbot = gitbot.github_issues_bot:main'
]
},
install_requires=['flask', 'click>=6', 'requests', 'appdirs', 'markdown', 'configparser'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'betamax']
)