-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 912 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
34
35
from setuptools import find_packages, setup
import yolapy
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as changelog_file:
changelog = changelog_file.read()
setup(
name='yolapy',
version=yolapy.__version__,
description='Python client for the Yola API',
long_description='%s\n\n%s' % (readme, changelog),
author='Yola',
author_email='[email protected]',
license='MIT (Expat)',
url='https://github.com/yola/yolapy',
packages=find_packages(),
test_suite='nose.collector',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'demands >= 4.0.0, < 6.0.0',
],
tests_require=[
'nose >= 1.3.0, < 1.4.0',
],
)