-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (40 loc) · 1.2 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
import os
import github_watchman.__about__ as a
from setuptools import setup
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')) as f:
README = f.read()
setup(
name='github-watchman',
version=a.__version__,
url=a.__uri__,
license=a.__license__,
classifiers=[
'Intended Audience :: Information Technology',
'Topic :: Security',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
author=a.__author__,
author_email=a.__email__,
long_description=README,
long_description_content_type='text/markdown',
description=a.__summary__,
install_requires=[
'requests',
'colorama',
'termcolor',
'PyYAML',
],
packages=['github_watchman'],
include_package_data=True,
package_data={
"": ["*.yml", "*.yaml"],
},
entry_points={
'console_scripts': ['github-watchman=github_watchman:main']
}
)