forked from webpy/webpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.1 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
#!/usr/bin/env python
import os
from setuptools import setup
from web import __version__
rootdir = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(rootdir, "README.md")) as in_file:
long_description = in_file.read()
setup(
name="web.py",
version=__version__,
description="web.py: makes web apps",
author="Aaron Swartz",
author_email="[email protected]",
maintainer="Anand Chitipothu",
maintainer_email="[email protected]",
url="http://webpy.org/",
packages=["web", "web.contrib"],
install_requires=["cheroot"],
long_description=long_description,
long_description_content_type="text/markdown",
license="Public domain",
platforms=["any"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)