-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (39 loc) · 1.02 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
#!/usr/bin/env python
from __future__ import print_function
import os
__author__ = 'alforbes'
# from distutils.core import setup
from setuptools import setup, find_packages
import multiprocessing # nopep8
tests_require=[
'Flask-Testing',
'httpretty',
'orlo >= 0.4.0',
'pytest',
'mock',
]
install_requires = [
'arrow',
'requests',
]
setup(
name='orloclient',
version='0.4.5',
description='Client to the Orlo deployment _data capture API',
author='Alex Forbes',
author_email='[email protected]',
license='GPL',
long_description=open(os.path.join(os.getcwd(), 'README.rst')).read(),
url='https://github.com/eBayClassifiedsGroup/orloclient',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require={'test': tests_require,
'install': install_requires},
tests_require=tests_require,
entry_points={
'console_scripts': [
'orloclient=orloclient.__main__:main'
]
},
)