forked from khooihzhz/coingecko-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.11 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 setuptools import setup, find_packages
with open('README.md') as f:
description = f.read()
setup(
name='coingecko',
version='0.14',
description='Python wrapper for the CoinGecko API',
long_description=description,
long_description_content_type='text/markdown',
packages=find_packages(),
url="https://github.com/khooihzhz/coingecko-python",
author='khooihzhz',
author_email='khooihongzhe@gmail.com',
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
'requests',
],
extras_require={
'dev': [
'pytest-recording',
]
},
python_requires='>=3.0',
)