-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.09 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
from animality import __version__
from setuptools import setup
setup(
name='animality-py',
packages=['animality'],
version=__version__,
license='MIT',
description='A python API wrapper for https://animality.xyz/',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='vierofernando',
entry_points={
'console_scripts': [
'animality = animality.cli'
]
},
author_email='[email protected]',
url='https://github.com/animality-xyz/animality-py',
download_url=f'https://github.com/animality-xyz/animality-py/archive/{__version__}.tar.gz',
keywords=['animal', 'api', 'animality', 'animality-api'],
install_requires=[
'aiohttp',
'halo'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
python_requires='>=3.7'
)