forked from miracle2k/python-closure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 869 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·32 lines (31 loc) · 869 Bytes
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name="closure",
description="Closure compiler packaged for Python",
long_description=open('README.rst').read(),
author='Michael Elsdörfer',
author_email='michael@elsdoerfer.com',
version="20160517",
url="http://pypi.python.org/pypi/closure",
license='BSD',
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts': [
"closure = closure:main"
]
},
package_data={
'': ["*.jar"]
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)