-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 817 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 817 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
#!/usr/bin/env python
#pandoc -t rst -f markdown README.mkd -o README
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='mass',
version='0.1.3',
description='Merge and Simplify Scripts: an automated tool for managing, combining and minifying javascript assets for web projects.',
long_description=read('README'),
author='jack boberg alex padgett',
author_email='info@codedbyhand.com',
url='https://github.com/coded-by-hand/mass',
license='BSD License',
platforms=['Mac OSX'],
packages=['mass'],
install_requires=['distribute','jsmin','macfsevents'],
zip_safe = False,
entry_points = {
'console_scripts': [
"mass = mass.monitor:main"
],
}
)