-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 741 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 741 Bytes
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
"""
Flask-GitHubApp
---------------
Easy GitHub App integration for Flask
"""
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'src/flask_githubapp/version.py'), 'r') as f:
exec(f.read())
setup(
name='Flask-GitHubApp',
package_dir = {"": "src"},
version=__version__,
url='https://github.com/bradshjg/flask-githubapp',
license='MIT',
author='Jimmy Bradshaw',
author_email='james.g.bradshaw@gmail.com',
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'
],
)