-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
36 lines (34 loc) · 979 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='azoo',
version='1.3.0',
author="Artsiom Kushnariou",
author_email="[email protected]",
description="Downloads apks from androzoo repository https://androzoo.uni.lu/",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/ArtemKushnerov/az',
entry_points={
'console_scripts': [
'az=modules.main:run'
]
},
packages=find_packages(),
package_data={
'': ['*.yaml'],
},
install_requires=[
'click==6.7',
'setuptools==41.0.1',
'python_dateutil==2.7.2',
'PyYAML==4.2b1',
'requests==2.20.0',
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)