-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 loc) · 1.22 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
#!/usr/bin/env python
from distutils.core import setup
from condiment import __version__
from os.path import join, dirname
README = open(join(dirname(__file__), 'README.md')).read()
setup(
name='condiment',
py_modules=['condiment'],
scripts=['scripts/condiment'],
version=__version__,
description='Conditionally include code according to environment variables',
long_description=README,
author='Mathieu Virbel',
author_email='[email protected]',
keywords=['python', 'preprocessor', 'meta', 'condiment', 'conditional'],
platforms='all',
url='http://github.com/tito/condiment',
license='zlib',
zip_safe=False,
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: zlib/libpng License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Pre-processors',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Code Generators',
])