-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (47 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env/ python
# encoding: utf-8
"""Setuptools configuration file."""
import setuptools
from cryptonator import __version__, __name__
__author__ = 'aldur'
def readme():
"""Try converting the README to an RST document. Return it as is on failure."""
try:
return open('README.md').read()
except IOError:
return ''
setuptools.setup(
name=__name__,
version=__version__,
py_modules=['cryptonator'],
description='A simple wrapper for the cryptonator exchange rate API.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/aldur/cryptonator',
author='Adriano Di Luzio',
author_email='[email protected]',
packages=setuptools.find_packages(exclude=('tests', 'docs')),
install_requires=['requests', ],
keywords=["cryptonator", ],
license='MIT',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
],
zip_safe=False,
include_package_data=True,
)