-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 811 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 811 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
from setuptools import find_packages, setup
version = '0.0.3.dev0'
setup(
name='flask_tinyauth',
version=version,
license='Apache Software License',
classifiers=[
'Operating System :: POSIX',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
'flask_restful',
],
extras_require = {
'test': [
'flake8',
'flake8-isort',
'pytest',
'pytest-cov',
'codecov',
],
}
)