-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 873 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 873 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
33
from setuptools import find_packages, setup
version = '0.0.1'
setup(
name='docker_registry_tinyauth',
version=version,
license='Apache Software License',
classifiers=[
'Intended Audience :: System Administrators',
'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=[
"Flask>=0.12",
"PyJWT>=1.5.3",
],
extras_require = {
'test': [
'flake8',
'flake8-isort',
'pytest',
'pytest-cov',
'codecov',
],
},
)