-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.38 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.38 KB
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
from distutils.core import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='catapi.py',
packages=['catapi', 'catapi.models', 'catapi.models.abc'],
version='0.4.1',
license='MIT',
description='A python wrapper for thecatapi.com',
long_description=long_description,
long_description_content_type="text/x-rst",
author='Ephreal',
author_email='contact@mylifeneeds.management',
url='https://github.com/ephreal/catapi.py',
download_url='https://github.com/ephreal/catapi.py/archive/0.4.1.tar.gz',
keywords=['cats', 'catapi', ],
install_requires=[
'aiohttp',
],
project_urls={
"Docs:", "https://catapipy.readthedocs.io/",
},
classifiers=[
# 'Development Status :: 5 - Production/Stable'
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)