-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
75 lines (67 loc) · 2.47 KB
/
setup.py
File metadata and controls
75 lines (67 loc) · 2.47 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import io
import os
import sys
from distutils.sysconfig import get_python_lib
from os.path import dirname, join
from setuptools import find_packages, setup
overlay_warning = False
if "install" in sys.argv:
lib_paths = [get_python_lib()]
if lib_paths[0].startswith("/usr/lib/"):
# We have to try also with an explicit prefix of /usr/local in order to
# catch Debian's custom user site-packages directory.
lib_paths.append(get_python_lib(prefix="/usr/local"))
for lib_path in lib_paths:
existing_path = os.path.abspath(os.path.join(lib_path, "moose"))
if os.path.exists(existing_path):
# We note the need for the warning here, but present it after the
# command is run, so it's more likely to be seen.
overlay_warning = True
break
EXCLUDE_FROM_PACKAGES = ['moose.conf.project_template',
'moose.conf.app_template',
'moose.bin']
# Dynamically calculate the version based on django.VERSION.
version = __import__('moose').__version__
setup(
name='Moose',
version=version,
url='https://github.com/muma378/moose',
author='Xiao Yang',
author_email='xiaoyang0117@gmail.com',
description=('Your manager for endless iterative tasks.'),
long_description=io.open('README.md', encoding='utf-8').read(),
license='BSD',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
scripts=['moose/bin/moose-admin.py'],
entry_points={'console_scripts': [
'moose-admin = moose.core.management:execute_from_command_line',
]},
install_requires=[
"Cython",
'pymssql>=2.1.3',
'pymongo>=3.5.1',
'azure-storage-blob>=1.1.0',
'chardet>=3.0.4',
'pytz>=2017.2',
'python-utils>=2.3.0',
'opencv-python>=3.3.0.10',
'openpyxl==2.5.3',
'Pillow>=3.4.1',
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
"Topic :: Utilities",
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)