forked from Clemson-DPA/dpa-pipe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
96 lines (74 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""Python setuptools installer module"""
# -----------------------------------------------------------------------------
from codecs import open
from os import pardir, path
from setuptools import setup, find_packages
# -----------------------------------------------------------------------------
AUTHOR = "Clemson Digital Production Arts Program",
AUTHOR_EMAIL = "[email protected]"
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
DESCRIPTION = "DPA pipeline front end API"
INSTALL_REQUIRES = [
"colorama",
"ordereddict",
"parsedatetime",
"python-dateutil",
"PyYAML",
"requests",
"rpyc",
"Sphinx",
"sphinx-rtd-theme",
]
KEYWORDS = "production pipeline framework",
LICENSE = 'MIT'
NAME = 'dpa-pipe'
PACKAGE_EXCLUDES = [
'dpa_site',
]
SCRIPTS = [
'bin/dpa',
'bin/dpa_houdini',
'bin/dpa_uncompress',
'bin/dpa_ribrender',
]
URL = "" # XXX once uploaded to git or bitbucket, set this
# -----------------------------------------------------------------------------
# path to this file's directory
PROJECT_ROOT = path.normpath(path.join(path.abspath(__file__), pardir))
# get a list of python packages to install
PACKAGES = find_packages(exclude=PACKAGE_EXCLUDES)
# get the long description
with open(path.join(PROJECT_ROOT, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
# fetch __version__ from the python package
exec(open(path.join(PROJECT_ROOT, 'dpa', '__init__.py')).read())
VERSION = __version__
# -----------------------------------------------------------------------------
setup(
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
keywords=KEYWORDS,
license=LICENSE,
long_description=LONG_DESCRIPTION,
name=NAME,
packages=PACKAGES,
scripts=SCRIPTS,
url=URL,
version=VERSION,
)