-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 802 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
version = '0.9.1'
name = 'oasis'
short_description = 'A simple HTTP, PROXY, CGI, WSGI server'
with open("README.md") as f:
long_description = f.read()
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development",
]
setup(
name=name,
version=version,
description=short_description,
long_description=long_description,
classifiers=classifiers,
keywords=['oasis', 'wsgi', 'cgi', 'proxy', 'http', 'https'],
author='Kenji Yano',
author_email='[email protected]',
url='https://github.com/yanolab/oasis',
license='MIT',
packages=['oasis', 'oasis.wsgi'],
test_suite='test.test.suite'
)