forked from NiklasRosenstein/python-github-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (52 loc) · 1.58 KB
/
setup.py
File metadata and controls
57 lines (52 loc) · 1.58 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
# This file was auto-generated by Shut. DO NOT EDIT
# For more information about Shut, check out https://pypi.org/project/shut/
from __future__ import print_function
import io
import os
import setuptools
import sys
command = sys.argv[1] if len(sys.argv) >= 2 else None
readme_file = 'README.md'
if os.path.isfile(readme_file):
with io.open(readme_file, encoding='utf8') as fp:
long_description = fp.read()
else:
print("warning: file \"{}\" does not exist.".format(readme_file), file=sys.stderr)
long_description = None
requirements = [
'PyJWT >=1.7.1,<2.0.0',
'cryptography >=3.1.1,<4.0.0',
'requests >=2.25.0,<3.0.0',
]
test_requirements = [
'PyGithub',
'types-flask',
'types-jwt',
'types-requests',
]
extras_require = {}
extras_require['test'] = test_requirements
setuptools.setup(
name = 'github-bot-api',
version = '0.3.3',
author = 'Niklas Rosenstein',
description = 'API for creating GitHub bots and webhooks in Python.',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://niklasrosenstein.github.io/python-github-bot-api/',
license = 'MIT',
packages = setuptools.find_packages('src', ['test', 'test.*', 'tests', 'tests.*', 'docs', 'docs.*']),
package_dir = {'': 'src'},
include_package_data = True,
install_requires = requirements,
extras_require = extras_require,
tests_require = test_requirements,
python_requires = '>=3.8.0,<4.0.0',
data_files = [],
entry_points = {},
cmdclass = {},
keywords = [],
classifiers = [],
zip_safe = False,
)