forked from thomaxxl/safrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.41 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
'''
python3 setup.py sdist
twine upload dist/*
'''
from distutils.core import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
install_requires=[str(ir.req) for ir in parse_requirements('requirements.txt', session=False)]
setup(
name = 'safrs',
packages = ['safrs'],
version = '2.2.1',
license = 'MIT',
description = 'safrs : SqlAlchemy Flask-Restful Swagger2',
long_description=open('README.rst').read(),
author = 'Thomas Pollet',
author_email = '[email protected]',
url = 'https://github.com/thomaxxl/safrs',
download_url = 'https://github.com/thomaxxl/safrs/archive/1.2.1.tar.gz',
keywords = ['SqlAlchemy', 'Flask', 'REST', 'Swagger', 'JsonAPI', 'OpenAPI'],
python_requires='>=3.0, !=3.0.*, !=3.1.*, !=3.2.*, <4',
install_requires=install_requires,
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Framework :: Flask',
'Topic :: Software Development :: Libraries',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
)