This repository was archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (55 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import setuptools
from swift_upload_runner import __name__, __version__, __author__
setuptools.setup(
name=__name__,
version=__version__,
description="Swift upload / download runner for swift-browser-ui",
author=__author__,
author_email="[email protected]",
project_urls={
"Source": "https://github.com/CSCfi/swift-upload-runner",
},
license="MIT",
install_requires=[
"aiohttp==3.7.4.post0",
"requests==2.26.0",
"python-swiftclient==3.12.0",
"keystoneauth1==4.3.1",
"gunicorn>=20.0.1",
"uvloop==0.15.2",
"certifi==2021.5.30",
"swift-browser-ui" "@ git+https://github.com/cscfi/swift-browser-ui.git",
],
extras_require={
"test": [
"tox==3.23.1",
"pytest==6.2.4",
"pytest-cov==2.12.1",
"coverage==5.5",
"flake8==3.9.2",
"flake8-docstrings==1.6.0",
"asynctest==0.13.0",
"black==21.6b0",
"pytest-aiohttp==0.3.0",
],
},
packages=[__name__],
include_package_data=True,
platforms="any",
entry_points={
"console_scripts": [
"swift-upload-runner=swift_upload_runner.server:main",
]
},
classifiers=[
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)