-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.13 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
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.layout',
version='0.1.dev0',
description='djed.layout',
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",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
],
author='Djed developers',
author_email='[email protected]',
url='https://github.com/djedproject/djed.layout',
license='ISC License (ISCL)',
keywords='web pyramid pylons',
packages=['djed.layout'],
include_package_data=True,
install_requires=[
'pyramid',
],
extras_require={
'testing': [
'djed.testing',
'pyramid_chameleon',
],
},
test_suite='nose.collector',
)