-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (52 loc) · 1.72 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
#!/usr/bin/env python3
# coding:utf-8
from setuptools import setup
install_requires = []
with open('requirements.txt') as req_file:
for row in req_file:
req = row.strip()
if req:
install_requires.append(req)
if __name__ == '__main__':
setup(
name='gocddash',
version='2.5',
description='A status dashboard for Go.CD.',
author='Magnus Lyckå, Emily Bache',
author_email='[email protected], [email protected]',
license='MIT',
install_requires=install_requires,
url='https://github.com/magnus-lycka/gocddash',
classifiers=[
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Environment :: Web Environment",
],
keywords='continuous deployment integration build automation go.cd monitoring dashboard',
package_dir={'gocddash': 'gocddash'},
packages=[
'gocddash',
'gocddash.analysis',
'gocddash.console_parsers',
'gocddash.dashboard',
'gocddash.util',
],
package_data={
'gocddash': [
'templates/*.html',
'static/*.js',
'static/*.css',
'database/*.sql'
],
},
data_files=[('', ['requirements.txt'])],
scripts=[
'gocddash/gocddash_app.py',
'gocddash/gocddash_profiler.py',
'gocddash/gocddash_sync.py',
],
)