-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathsetup.py
26 lines (24 loc) · 821 Bytes
/
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
# from distutils.core import setup
import setuptools
version = {}
exec(open('./pycoingecko/version.py').read(), version)
# print(version['__version__'])
setuptools.setup(
name='pycoingecko',
version=version['__version__'],
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='[email protected]',
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",
],
)