forked from WebwareForPython/w4py3-middlekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.54 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
import setuptools
with open('webware/MiddleKit/Properties.py') as f:
properties = {}
exec(f.read(), properties)
version = properties['version']
version = '.'.join(map(str, version[:3])) + '.'.join(version[3:])
description = properties['synopsis']
with open('README.md') as fh:
long_description = fh.read()
setuptools.setup(
name='Webware-for-Python-MiddleKit',
version=version,
author='Chuck Esterbrook, Jason Hildebrand et al.',
author_email='[email protected]',
description=description,
install_requires=['Webware-for-Python>=3.0.0a1'],
long_description=long_description,
long_description_content_type='text/markdown',
keywords='database orm',
url='https://github.com/WebwareForPython/w4py3-middlekit',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable', #@@pre-relase
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
entry_points={
'webware.plugins': [
'MiddleKit = webware.MiddleKit',
]
}
)