This repository has been archived by the owner on Nov 18, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
/
setup.py
51 lines (46 loc) · 1.89 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
""" 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
pkg_files = [
'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-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',
]
pkg_files = ['lattice/{0}'.format(x) for x in pkg_files]
setup(
name = 'halite',
version = '0.1.17',
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': pkg_files},
install_requires = [''],
extras_require = {}, )