-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (48 loc) · 1.28 KB
/
setup.py
File metadata and controls
62 lines (48 loc) · 1.28 KB
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
# Always prefer setuptools over distutils
# To use a consistent encoding
from codecs import open
from setuptools import find_packages, setup
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>=5,6',
'click>=7.0,<8.0',
'cryptography>=2.1.4',
'github3.py>=1,<2',
'github3apps.py>=0.2.0,<0.3',
'pyjwt>=2,<3',
'PyYAML>=6,<7',
'fastapi>=0.75.0',
],
extras_require={
'dev': [
'pypandoc',
'twine',
'wheel'
],
},
)