-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·38 lines (35 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import asset_manager
setup(
name='asset-manager',
version=asset_manager.__version__,
author='Rob Eroh',
author_email='[email protected]',
description="Application that manages and minifies your "
"JavaScript and CSS while also making sprites "
"from your images.",
install_requires=['PIL'],
packages=find_packages(),
include_package_data=True,
package_data={
'': ['bin/*.jar']
},
zip_safe=False,
url='http://github.com/eroh92/asset_manager/',
classifiers=[
"Environment :: Web Environment",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
long_description="",
)