-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (31 loc) · 1.09 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
from setuptools import setup, find_packages
import ombott
setup(
name="ombott",
version=ombott.__version__,
url="https://github.com/valq7711/ombott",
license=ombott.__license__,
author=ombott.__author__,
author_email="[email protected]",
maintainer=ombott.__author__,
maintainer_email="[email protected]",
description="One More BOTTle",
platforms="any",
keywords='python webapplication',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.7',
packages=find_packages('.'),
package_data={'ombott': ['error.html']}
)