-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (58 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
71
72
73
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
version = '0.1.0'
setup(
name = 'gitconsensusservice',
version = version,
packages=find_packages(),
description = 'Automate Github Pull Requests using Reactions',
long_description=long_description,
python_requires='>=3',
author = 'Robert Hafner',
author_email = 'tedivm@tedivm.com',
url = 'https://github.com/tedivm/gitconsensusservice',
download_url = "https://github.com/tedivm/gitconsensusservice/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=[
'celery>=4.1,<5',
'click>=6.0,<7.0',
'cryptography>=2.1.4,<3',
'Flask>=0.12.2',
'gitconsensus>=0.7,<0.8'
'github3.py>=1,<2',
'github3apps.py>=0.1.3,<0.2',
'pyjwt>=1.5.3,<2',
'PyYAML>=3.12,<3.13',
'requests>=2.18.0,<2.19',
],
extras_require={
'dev': [
'pypandoc',
'twine',
'wheel'
],
},
entry_points={
'console_scripts': [
'gitconsensusservice=gitconsensusservice:cli',
],
},
)