-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 904 Bytes
/
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
from distutils.core import setup
import jsbuild
files = ['templates/*']
setup(name='JSBuild',
version=".".join( map(str, jsbuild.__version__) ),
description='JSBuild is a command-line utility that provides building CommonJS modules and packages for web',
license='MIT',
author=jsbuild.__author__,
author_email=jsbuild.__email__,
url='http://github.com/azer/jsbuild',
packages=['jsbuild'],
package_data = {'jsbuild' : files },
scripts=['scripts/jsbuild'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development'
],
)