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 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.27 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.27 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
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
setup(
name='workbench-android',
version='0.1a1',
packages=find_packages(),
description='',
url='https://github.com/ereuse/workbench-android',
author='eReuse.org team',
author_email='x.bustamante@ereuse.org',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'blessed',
'colorama',
'click >= 6.0',
'ereuse-utils[cli, naming]>=0.4.0b20'
],
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest'
],
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.5',
'Topic :: System :: Logging',
'Topic :: Utilities',
],
py_modules=['devicetag'],
entry_points={
'console_scripts': [
'wa = workbench_android.main:main',
],
},
)