-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·52 lines (49 loc) · 1.63 KB
/
setup.py
File metadata and controls
executable file
·52 lines (49 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
#!/usr/bin/env python3.5
from setuptools import setup, find_packages
with open('README.rst') as readme:
long_description = ''.join(readme.readlines())
setup(
name='github-labelbot',
version='0.5.0',
description='Simple bot labeling GitHub issues based on it\'s configuration. ',
long_description=long_description,
author='David Viktora',
author_email='viktoda2@fit.cvut.cz',
keywords='github, bot, issues',
license='MIT License',
url='https://github.com/fanarim/github_labelbot',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
install_requires=['click==6.6',
'decorator==4.0.10',
'Flask==0.11.1',
'itsdangerous==0.24',
'Jinja2==2.8',
'MarkupSafe==0.23',
'requests==2.11.1',
'six==1.10.0',
'validators==0.11.0',
'Werkzeug==0.11.11',
'appdirs==1.4.0'],
entry_points={
'console_scripts': [
'labelbot = github_labelbot.run:main',
],
},
package_data={
'github_labelbot': [
'static/custom.css',
'templates/index.html',
'rules.cfg.sample',
'token.cfg.sample',
]
},
)