-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 834 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
32
33
#-*- coding:utf-8 -*-
#
# Copyright (C) 2010 - Brantley Harris <[email protected]>
#
# Distributed under the MIT license, see LICENSE.txt
import os
from setuptools import setup, find_packages
setup(
name='minister',
version = 'dev',
description = 'Next generation webserver and manager.',
classifiers = [
'Development Status :: 3 - Alpha',
],
keywords = 'web server webserver',
author = 'Brantley Harris',
author_email = '[email protected]',
url = '',
license = 'MIT',
packages = find_packages(exclude=['libs', 'old', 'tests']),
include_package_data=True,
zip_safe = False,
install_requires = [
'eventlet>=0.9.7',
'simplejson',
],
entry_points = {
'console_scripts': [
'minister = minister:run',
],
})