-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.47 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
"""Setuptools Module."""
from setuptools import setup, find_packages
setup(
name="lzproduction",
version="0.1",
# package_dir={'': 'src/python'},
# packages=find_packages('src/python'),
packages=find_packages(),
package_data={'lzproduction': ['resources/html/*',
'resources/javascript/*',
'resources/bash/*']},
scripts=['scripts/userdb-update.py',
'scripts/webapp-daemon.py',
'scripts/dirac-daemon.py',
'scripts/monitoring-daemon.py'],
install_requires=['CherryPy==10.1.0',
'daemonize==2.4.7',
'enum34==1.1.6',
'GitPython==2.1.1',
'html==1.16',
'jinja2==2.9.5',
'natsort==5.0.2',
'pylru==1.0.9',
'PyMySQL==0.7.9',
'requests==2.13.0',
'SQLAlchemy==1.1.5',
'suds==0.4',
'rpyc==3.4.4'],
extras_require={
'development': ["pytest", "mock"]
#'webapp': [frontend stuff],
#'monitoring': [backend stuff]
},
# metadata for upload to PyPI
author="Alexander Richards",
author_email="[email protected]",
description="LZ Production Interface",
license="MIT",
keywords="LZ production",
url="https://github.com/alexanderrichards/LZProduction"
)