-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (39 loc) · 1.09 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
from setuptools import setup
setup(
name='gateway',
version='1.0.0',
packages=['gateway'],
url='https://github.com/akebrissman/gateway/',
license='MIT',
author='Åke Brissman',
author_email='[email protected]',
description='Reference project for making a RESTful application',
setup_requires=[
'pytest-runner'
],
install_requires=[
'Flask',
'Flask-RESTful',
'Flask-SQLAlchemy',
'pydantic',
'python-dotenv',
'python-jose'
],
tests_require=[
'pytest',
'coverage'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Quality Assurance'
],
python_requires='>=3.8'
)