forked from man-c/pycoingecko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 715 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#from distutils.core import setup
import setuptools
setuptools.setup(
name='pycoingecko',
version='2.2.0',
packages=['pycoingecko',],
license='MIT',
description = 'Python wrapper around the CoinGecko API',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author = 'Christoforou Manolis',
author_email = 'emchristoforou@gmail.com',
install_requires=['requests'],
url = 'https://github.com/man-c/pycoingecko',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)