forked from vmware-archive/halite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.92 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
""" setup.py
Basic setup file to enable pip install
See http://python-distribute.org/distribute_setup.py
python setup.py register sdist upload
"""
from setuptools import setup, find_packages
setup(
name = 'halite',
version = '0.1.12',
description = 'SaltStack Web UI',
url = 'https://github.com/saltstack/halite',
author='SaltStack Inc',
author_email='[email protected]',
license='Apache V2.0',
keywords='Salt Stack client side web application, web server',
packages = find_packages(exclude=['*.mold', '*.mold.*',
'test', 'tests.*',
'node_*', 'node_*.*',
'screenshots', 'screenshots.*']),
package_data={
'': ['*.txt', '*.md', '*.rst', '*.json', '*.conf', '*.html',
'*.css', '*.ico', '*.png', 'LICENSE'],
'halite': ['app/*.txt', 'app/*/*.txt',
'app/*.ico', 'app/*/*.ico',
'app/*.png', 'app/*/*.png',
'app/*.html', 'app/*/*.html',
'app/*.css', 'app/*/*.css',
'app/*.js', 'app/*/*.js',
'lib/*/*.png','lib/*/*/*.png',
'lib/*/*.woff', 'lib/*/*/*.woff',
'lib/angular/*.min.js', 'lib/angular/*.min.js.map',
'lib/angular/i18n/*','lib/angular/angular-csp.css',
'lib/angular/angular-loader.js',
'lib/angular-ui/bootstrap/*-tpls.min.js',
'lib/angular-ui/router/*.min.js',
'lib/angular-ui/utils/*.min.js',
'lib/bootstrap/js/*.min.js', 'lib/bootstrap/css/*.min.css',
'lib/font-awesome/css/*.min.css',
'lib/underscore/*.min.js', 'lib/underscore/*.min.map',
],},
install_requires = [''],
extras_require = {}, )