-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 930 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
import sys, os
try:
from setuptools import setup
kw = {'entry_points':
"""[console_scripts]\nconfig = config:main\n""",
'zip_safe': False}
except ImportError:
from distutils.core import setup
if sys.platform == 'win32':
print 'Note: without Setuptools installed you will have to use "python -m config PARAMETERS"'
else:
kw = {'scripts': ['scripts/config']}
import re
setup(name='service',
version='0.1',
description="Supervise directory structure builder",
long_description="ADD ME!",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
],
keywords='',
author='Christian Klein',
author_email='[email protected]',
url='http://github.com/cklein/service',
license='BSD',
py_modules=['config'],
**kw
)