forked from jam-py/jam-py
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
49 lines (48 loc) · 1.74 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
42
43
44
45
46
47
48
49
import os
from setuptools import setup
import jam
setup(
name='jam.py-v7',
version=jam.version(),
url='https://github.com/jam-py-v5/jam-py',
author='Andrew Yushev',
author_email='[email protected]',
description=('Jam.py Application Builder is an event-driven framework \
for the development of web database applications.'),
license='BSD',
python_requires = '>= 3.7',
install_requires=[
"Werkzeug>=3.0.0",
"sqlalchemy",
"esprima",
"pyjsparser",
"jsmin"
],
packages=[
'jam', 'jam.db', 'jam.admin', 'jam.secure_cookie'
],
package_data={'jam': ['langs.sqlite', 'html/*.html', 'js/*.js', 'js/bs5/*.*',
'js/modules/*.js', 'js/ace/*.js',
'css/**/*.*',
'css/*', 'css/bs5/*.*', 'css/bs5/fonts/*.*',
'css/zebra_datepicker/**/*.*',
'img/*.*', 'project/*.*', 'project/css/*.*', 'admin/builder_structure.info']},
scripts=['jam/bin/jam-project.py'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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'
],
long_description=open('README.md', encoding="utf8").read(),
long_description_content_type='text/markdown',
)