-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.18 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.18 KB
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
import os
from setuptools import setup
def read(f):
here = os.path.abspath(os.path.dirname(__file__))
return open(os.path.join(here, f), encoding='utf-8').read().strip()
setup(
name='djed.testing',
version='0.2.dev0',
description='Base unit test case for Pyramid',
long_description='\n\n'.join((read('README.rst'), read('CHANGES.txt'))),
classifiers=[
'Framework :: Pyramid',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
author='Djed developers',
author_email='djedproject@googlegroups.com',
url='https://github.com/djedproject/djed.testing',
license='ISC License (ISCL)',
keywords='web pyramid pylons djed',
packages=['djed'],
include_package_data=True,
install_requires=[
'pyramid',
'nose',
'webtest',
],
extras_require={
'testing': [],
},
test_suite='nose.collector',
entry_points={
'console_scripts': [
],
},
)