-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.14 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
from distutils.core import setup
import os
long_description = "Python wrapper for Uglify-JS library."
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(name='UgliPyJS',
version='0.2.5',
url='https://github.com/OiNutter/uglipyjs',
download_url='https://github.com/OiNutter/uglipyjs/tarball/master',
description='Python wrapper for Uglify-JS library.',
long_description=long_description,
author='Will McKenzie',
author_email='[email protected]',
packages=['uglipyjs'],
package_dir={'uglipyjs': 'uglipyjs'},
package_data={
'uglipyjs': ['*.js'],
},
requires=['ordereddict','PyExecJS'],
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: JavaScript'
]
)