-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
44 lines (40 loc) · 1.23 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
"""
Flask-GitHubApp
---------------
Easy GitHub App integration for Flask
"""
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'flask_githubapp/version.py'), 'r') as f:
exec(f.read())
setup(
name='Flask-GitHubApp',
version=__version__,
url='https://github.com/bradshjg/flask-githubapp',
license='MIT',
author='Jimmy Bradshaw',
author_email='[email protected]',
description='Rapid GitHub app development in Python',
long_description=__doc__,
packages=['flask_githubapp'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'flask',
'github3.py'
],
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'
]
)