-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 911 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
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
def read(fname):
with open(join(dirname(__file__), fname)) as f:
return f.read()
setup(
# Package
name="CoinMarketCapAPI",
version="0.5",
packages=find_packages(exclude=("tests")),
url="https://github.com/ani071/coinmarketcap",
keywords=["CoinMarketCap", "API"],
install_requires=["requests_cache", "requests", "ratelimit"],
# Contact
author="Andreas Isnes Nilsen",
author_email="[email protected]",
# Description
description="Module for fethcing data from CoinMarketCap's v1 API",
long_description=read("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)