forked from vmware-archive/halite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 815 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 815 Bytes
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
""" 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.0.1',
description = 'SaltStack Web UI',
url = 'https://github.com/saltstack/halite',
packages = find_packages(exclude=[]),
package_data={'': ['*.txt', '*.ico', '*.json', '*.md', '*.conf', ''
'*.js', '*.html', '*.css', '*.png',]},
install_requires = [],
extras_require = {},
tests_require = ['nose'],
test_suite = 'nose.collector',
author='SaltStack Inc',
author_email='info@saltstack.com',
license="Commercial",
keywords='Salt Stack web client side application user interface',
)