-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
61 lines (48 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
61
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
version = '0.8.0'
setup(
name = 'gitconsensus',
version = version,
packages=find_packages(),
description = 'Automate Github Pull Requests using Reactions',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
python_requires='>=3',
author = 'Robert Hafner',
author_email = 'tedivm@tedivm.com',
url = 'https://github.com/gitconsensus/gitconsensuscli',
download_url = "https://github.com/gitconsensus/gitconsensuscli/archive/v%s.tar.gz" % (version),
keywords = 'automation github consensus git',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Version Control',
'Programming Language :: Python :: 3',
'Environment :: Console',
],
install_requires=[
'click>=6.0,<8.0',
'github3.py>=1,<2',
'PyYAML>=3.12,<6',
'requests>=2.18.0,<3',
'semantic_version>=2.6.0,<3'
],
extras_require={
'dev': [
'twine',
'wheel'
],
},
setup_requires=["pytest-runner"],
tests_require=["freezegun", "pytest", "pytest-cov", "pytest-mock"],
entry_points={
'console_scripts': [
'gitconsensus=gitconsensus.gitconsensus:cli',
],
},
)