-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (47 loc) · 1.51 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
58
59
from io import open
from setuptools import find_packages, setup
with open('tsu/__init__.py', 'r') as f:
for line in f:
if line.startswith('__version__'):
version = line.strip().split('=')[1].strip(' \'"')
break
else:
version = '0.0.1'
readme_file="README.md"
with open(readme_file) as f:
readme = f.read()
REQUIRES = ['docopt']
setup(
name='tsu',
version=version,
description='A su wrapper for Termux',
long_description=readme,
long_description_content_type="text/markdown",
author='Cswl coldwind',
author_email='[email protected]',
maintainer='Cswl coldwind',
maintainer_email='[email protected]',
url='https://github.com/_/tsu',
license='MIT',
keywords=[
'',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=REQUIRES,
tests_require=['coverage', 'pytest'],
entry_points={ 'console_scripts'
: [ 'tsu=tsu.main:cli' ]},
packages=find_packages()
)