forked from eBayClassifiedsGroup/orlo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (47 loc) · 1.27 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
#!/usr/bin/env python
# from distutils.core import setup
from setuptools import setup
import multiprocessing # nopep8
import os
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
VERSION = '0.3.1'
version_file = open(os.path.join(__location__, 'orlo', '_version.py'), 'w')
version_file.write("__version__ = '{}'".format(VERSION))
version_file.close()
setup(
name='orlo',
version=VERSION,
description='Deployment data capture API',
author='Alex Forbes',
author_email='[email protected]',
license='GPL',
long_description=open(os.path.join(__location__, 'README.md')).read(),
url='https://github.com/eBayClassifiedsGroup/orlo',
packages=[
'orlo',
],
include_package_data=True,
install_requires=[
'Flask',
'Flask-Migrate',
'Flask-SQLAlchemy',
'Flask-HTTPAuth',
'Flask-TokenAuth',
'arrow',
'gunicorn',
'psycopg2',
'pyldap',
'pytz',
'sphinxcontrib-httpdomain',
'sqlalchemy-utils',
],
tests_require=[
'Flask-Testing',
'orloclient>=0.1.1',
],
test_suite='tests',
# Creates a script in /usr/local/bin
entry_points={
'console_scripts': ['orlo=orlo.cli:main']
}
)