-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.36 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='Flask-GitHubApplication',
url='https://github.com/ffalor/flask-githubapplication',
project_urls={
"Bug Tracker": "https://github.com/ffalor/flask-githubapplicatio/issues",
},
license='GNU3',
author='Frank Falor',
author_email='[email protected]',
description='Flask extension for creating Github Apps',
package_dir={"": "src"},
packages=find_packages(where="src"),
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
install_requires=[
'flask==2.2.5',
'ghapi==0.1.19',
'requests==2.32.2',
'pyjwt[crypto]==2.1.0'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Framework :: Flask',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)