-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.02 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
# coding=utf-8
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='image-charts',
version="6.1.28",
py_modules=['ImageCharts'],
url='https://github.com/image-charts/python',
license='MIT',
author='Francois-Guillaume Ribreau',
author_email='[email protected]',
description='Official Image-Charts.com API client library',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests>=2.24"],
python_requires='>=3.6',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Communications :: Email',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Libraries',
'Topic :: Communications :: Chat',
'Topic :: Utilities'
],
)