forked from doloopwhile/Python-CoffeeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (39 loc) · 1.28 KB
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
#!python3
#encoding: ascii
from setuptools import setup
import io
with io.open('README.rst', encoding='ascii') as fp:
long_description = fp.read()
setup(
name='CoffeeScript',
version="1.0.3",
author='OMOTO Kenji',
description='A bridge to the JS CoffeeScript compiler',
packages=['coffeescript', 'coffeescript.scripts'],
package_dir={'coffeescript': 'coffeescript'},
package_data={
'coffeescript': ['coffee-script.js'],
},
entry_points='''\
[console_scripts]
coffee = coffeescript.scripts.coffee:main
''',
long_description=long_description,
url='https://github.com/doloopwhile/Python-CoffeeScript',
author_email='doloopwhile@gmail.com',
license="MIT License",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.2',
'Programming Language :: JavaScript',
],
install_requires="PyExecJS".split(),
test_suite="test_coffeescript",
)