forked from gitconsensus/GithubOrganizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (48 loc) · 1.29 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.1.0'
try:
long_description = open('README.md').read()
except:
long_description = ''
setup(
name = 'githuborganizer',
version = version,
packages=find_packages(),
description = '',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3',
author = 'Robert Hafner',
author_email = 'tedivm@tedivm.com',
url = 'https://github.com/tedivm/githuborganizer',
download_url = "https://github.com/tedivm/githuborganizer/archive/v%s.tar.gz" % (version),
keywords = 'automation github organizations',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Version Control',
'Programming Language :: Python :: 3',
],
install_requires=[
'Beaker>=1.11.0,<2',
'celery>=4.1,<5',
'click>=7.0,<8.0',
'cryptography>=2.1.4,<3',
'github3.py>=1,<2',
'github3apps.py>=0.2.0,<0.3',
'pyjwt>=1.5.3,<2',
'PyYAML>=5,<6',
'fastapi>=0.42.0',
],
extras_require={
'dev': [
'pypandoc',
'twine',
'wheel'
],
},
)