This repository was archived by the owner on Jan 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (40 loc) · 1.36 KB
/
setup.py
File metadata and controls
executable file
·44 lines (40 loc) · 1.36 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
44
#!/usr/bin/env python3
# -*- coding: ascii -*-
from setuptools import setup
import sys
import io
with io.open('README.rst', encoding='ascii') as fp:
long_description = fp.read()
setup(
name='CoffeeScript',
version='2.0.3',
author='OMOTO Kenji',
description='A bridge to the JS CoffeeScript compiler',
packages=['coffeescript'],
package_dir={'coffeescript': 'coffeescript'},
package_data={
'coffeescript': ['coffeescript.js'],
},
zip_safe=True,
long_description=long_description,
url='https://github.com/doloopwhile/Python-CoffeeScript',
download_url='https://pypi.python.org/pypi/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 :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: JavaScript',
],
install_requires=['PyExecJS'],
test_suite='test_coffeescript',
)