forked from jam-py/jam-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.58 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
39
40
41
import os
from setuptools import setup
cur_dir = os.getcwd()
setup(
name='jam.py',
version='1.0.8',
url='http://jam-py.com/',
author='Andrew Yushev',
author_email='[email protected]',
description=('Jam.py is the fastest way to create a web/desktop database application.'),
license='BSD',
packages=['jam', 'jam.lang', 'jam.third_party', 'jam.third_party.web',
'jam.third_party.web.contrib', 'jam.third_party.web.wsgiserver',
'jam.third_party.slimit', 'jam.third_party.slimit.ply',
'jam.third_party.slimit.visitors'],
# install_requires = ['PyGTK >= 2.24.0'],
package_data={'jam': ['ui/*.ui',
'project/*.*', 'project/js/*.js', 'project/css/*.css',
'project/img/*.*', 'project/ui/*.*']},
scripts=['jam/bin/jam-project.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database',
'Topic :: Database :: Front-Ends'
],
)