-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (36 loc) · 1.17 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
from setuptools import setup, find_packages
from os import path
from owo.utils import version
here = path.abspath(path.dirname(__file__))
with open('README.md') as f:
long_description = f.read()
setup(
name='owo',
version=version,
description='Python API wrapper for api.awau.moe',
long_description=long_description,
url='https://github.com/whats-this/owo.py',
author='martmists',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Communications :: File Sharing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
install_requires=[
"requests"
],
python_requires='>=2.0,>=3.0',
packages=find_packages(),
entry_points={
'console_scripts': ['owo=owo.cli:main', 'owo-bg=owo.bg:main',
'owo-fix=owo.fix_termux:main'],
},
keywords='api wrapper owo',
)