-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
50 lines (46 loc) · 1.31 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
45
46
47
48
49
50
from __future__ import absolute_import
from setuptools import find_packages, setup
with open('./README.md', 'r') as f:
readme = f.read()
setup(
name='github-automation',
use_scm_version=True,
setup_requires=['setuptools_scm'],
url='https://github.com/demisto/github-automation',
license='MIT',
author='Rony Kozakish & Dean Arbel',
author_email='',
description='GitHub automatic project manager tool',
install_requires=[
'click',
'requests',
'python-dateutil',
'gql==3.0.0a5'
],
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
keywords=[
"GitHub",
"Project",
"Manager",
"github-automation",
"project",
"manage",
"manager"
],
long_description=readme,
long_description_content_type='text/markdown',
python_requires=">=3.7",
entry_points={
'console_scripts': ['github-automation = github_automation.cli.main:main']
},
classifiers=[
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)