-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 854 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
33
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import codecs
def readme():
with codecs.open('README.rst', encoding='utf-8') as f:
return f.read()
setup_requires = []
install_requires = ['requests']
setup(
name='coinnest-python-client',
version='0.0.1',
python_requires = '>=3.4',
description='Client for Coinnest API',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
setup_requires=setup_requires,
author='Leop0ld',
author_email='[email protected]',
url='https://github.com/Leop0ld/coinnest-python-client.git',
long_description=readme(),
license='MIT',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)