-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (46 loc) · 1.31 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
52
53
54
55
56
57
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
ROOT = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, ROOT)
import coffeetools
EXTRAS = {
extra: open(os.path.join(ROOT, 'requirements.%s.txt' % extra)).read()
for extra in ['jinja', 'ipython']}
EXTRAS['all'] = '\n'.join(EXTRAS.values())
setup(
name='coffeetools',
version=coffeetools.__version__,
description=(
'Tools for using CoffeeScript with Python.'
),
author='Stefan Zimmermann',
author_email='[email protected]',
url='http://bitbucket.org/userzimmermann/python-coffeetools',
license='LGPLv3',
extras_require=EXTRAS,
packages=[
'coffeetools',
'coffeetools.jinja',
'coffeetools.ipython',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved ::'
' GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Utilities',
],
keywords=[
'coffee', 'tools', 'script', 'coffeescript', 'javascript',
'jinja', 'jinja2', 'jinjatools', 'template', 'tag', 'extension',
'python3',
],
)