-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
96 lines (84 loc) · 2.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import io
import os
import sys
from setuptools import find_packages
from setuptools import setup
from setuptools.command.test import test as TestCommand
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read(
os.path.join(os.path.dirname(__file__), 'README.rst'),
os.path.join(os.path.dirname(__file__), 'CHANGES'),
)
# Additional Hooks
# ----------------------------
# Integrate py.test with setup.py:
# http://pytest.org/latest/goodpractises.html#integration-with-setuptools-test-commands
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name='Rhetoric',
version='0.2.3',
packages=find_packages(exclude=['tests']),
install_requires=[
'Django>=1.4',
'venusian>=1.0',
'six',
],
test_suite='tests',
tests_require=['pytest', 'coverage'],
package_data={
# If any package contains *.txt or *.rst files, include them
'': ['*.txt', '*.rst',]
},
include_package_data=True,
cmdclass={
'test': PyTest,
},
# PyPI metadata
# Read more at http://docs.python.org/distutils/setupscript.html#meta-data
author="Maxim Avanov",
author_email="[email protected]",
maintainer="Maxim Avanov",
maintainer_email="[email protected]",
description="Pyramid-like routes for Django projects",
long_description=long_description,
license="MIT",
url="https://github.com/avanov/Rhetoric",
download_url="https://github.com/avanov/Rhetoric",
keywords="pyramid django routes",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
]
)