-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
71 lines (66 loc) · 2.12 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join as join_path
from setuptools import setup, find_packages
def _read(file_name):
sock = open(file_name)
text = sock.read()
sock.close()
return text
setup(
name = 'weblayer',
version = '0.4.3',
description = 'A lightweight, componentised package for writing web applications',
long_description = _read('README.rst'),
author = 'James Arthur',
author_email = 'username: thruflo, domain: gmail.com',
url = 'http://packages.python.org/weblayer',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license = 'http://unlicense.org/UNLICENSE',
packages = find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
zip_safe = False,
install_requires=[
'WebOb==1.0.1',
'Mako==0.3.6',
'venusian==0.5',
'zope.interface==3.6.1',
'zope.component==3.10.0',
'setuptools-git==0.3.4'
],
extras_require = {
'dev': [
'coverage==3.4',
'nose==1.0.0',
'mock==0.7.0b4',
'repoze.sphinx.autointerface==0.4',
'Sphinx==1.0.7',
'WebTest==1.2.3'
]
},
entry_points = {
'setuptools.file_finders': [
"foobar = setuptools_git:gitlsfiles"
],
'console_scripts': [
"weblayer-demo = weblayer.examples.helloworld:main"
]
}
)