-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 975 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
packages = [
'lassi',
'lassi.lib'
]
requires = open("requirements/base.txt").read().split()
setup(
name='lassi',
version='0.0.1',
description='Basic Configuration Management Tool',
packages=find_packages(),
package_dir={'lassi': 'lassi'},
include_package_data=True,
install_requires=requires,
zip_safe=False,
entry_points={
'console_scripts': [
'lassi = lassi.lassi:main'
]
},
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration',
)
)