This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (54 loc) · 1.57 KB
/
setup.py
File metadata and controls
55 lines (54 loc) · 1.57 KB
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
from setuptools import find_packages, setup
setup(
name='eReuse-WorkbenchServer',
version='0.4.1',
packages=find_packages(exclude=('contrib', 'docs', 'scripts')),
url='https://github.com/eReuse/acelerywb',
license='AGPLv3 License',
author='Garito and eReuse.org team',
author_email='x.bustamante@ereuse.org',
description='Workbench manager for servers',
# Updated in 2017-07-29
install_requires=[
'requests',
'flask>=0.11',
'flask-cors',
'pydash',
'pyusb',
'ereuse-utils [usb_flash_drive]',
'ereuse-utils [naming]',
'ereuse-utils [test]',
'pymongo'
],
extras_require={
'tags': [
'pycups'
],
'webview': [
'cefpython'
]
},
keywords='eReuse.org Workbench devices reuse recycle it asset management',
test_suite='workbench_server.tests',
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest',
'requests_mock'
],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Flask',
'Intended Audience :: Manufacturing',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Operating System :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
]
)