-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.16 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_namespace_packages
import bunnypy
setup(
name='BunnyPy',
version=bunnypy.__version__,
description='Lightweight Python Web Framework',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
author='IvanLuLyf',
author_email='[email protected]',
url='https://github.com/ivanlulyf/bunnypy',
packages=find_namespace_packages(),
include_package_data=True,
package_data={'bunnypy.asset': ['asset/*.html']},
license='MIT',
platforms='any',
classifiers=['Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)