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
47 lines (45 loc) · 1.33 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.33 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
from setuptools import find_packages, setup
test_requires = [
'pytest',
'requests_mock'
]
setup(
name="ereuse-utils",
version='0.4.0b50',
packages=find_packages(),
url='https://github.com/eReuse/utils',
license='AGPLv3 License',
author='eReuse.org team',
author_email='hello@ereuse.org',
description='Common functionality for eReuse.org software',
install_requires=[
'boltons',
'inflection'
],
extras_require={
'naming': [],
'usb_flash_drive': ['pyusb'], # Check pyusb requirements
'test': ['flask'],
'session': ['requests-toolbelt'],
'cli': ['click', 'tqdm', 'colorama'],
'keyring': ['keyring'],
'testing': test_requires,
'getter': ['pyYAML']
},
tests_require=test_requires,
setup_requires=[
'pytest-runner'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Logging',
'Topic :: Utilities',
],
)