-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 1.22 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
from distutils.core import setup
from setuptools import find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='compuglobal',
packages=find_packages(exclude=['docs', 'tests', 'examples']),
version='0.2.7',
description='Python wrapper for the CGHMC API (Frinkiac, Morbotron,' +
' Master Of All Science and more!)',
long_description=long_description,
author='MitchellAW',
author_email='[email protected]',
license='MIT',
url='https://github.com/MitchellAW/CompuGlobal',
keywords=['frinkiac', 'morbotron', 'master-of-all-science',
'good-god-lemon', 'capital-beat-us', 'the-simpsons',
'futurama', 'rick-and-morty', '30 rock', 'west wing', 'api'],
scripts=[],
classifiers=['Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
install_requires=['requests>=2.20.0', 'aiohttp>=3.6.0,<4']
)