-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (28 loc) · 999 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
import unittest
import optimove
setup(
name='optimove',
version=optimove.__version__,
packages=find_packages(),
author='Nicolas RAMY',
author_email='[email protected]',
license='MIT',
description='This library allows you to quickly and easily use the Optimove Web API v3 via Python',
long_description=open('README.rst').read(),
include_package_data=True,
install_requires=['requests', 'six', 'urllib3[secure]'],
tests_require=['mock', 'responses'],
test_suite='tests',
url='https://github.com/nicolasramy/optimove',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)