-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 712 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 712 Bytes
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
from setuptools import setup
requirements = []
setup(
name='Kadal',
author='SynderBlack',
version="0.2.6",
packages=['kadal'],
license='MIT',
description='Async wrapper for the Anilist API',
url='https://github.com/SynderBlack/Kadal',
include_package_data=True,
install_requires=requirements,
extras_require={
'multio': [
'multio',
'asks'
],
'asyncio': [
'aiohttp'
]
},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only"
]
)