-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 900 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
34
35
36
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='crdppf',
version='3.1.4',
description='SITN, public law restriction portal core',
author='sitn',
author_email='[email protected]',
url='http://www.ne.ch/sitn',
install_requires=[
'c2c.template',
'dogpile.cache',
'httplib2',
'jstools',
'papyrus',
'pyramid_tm',
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
"iconizer = crdppf.utilities.iconizer:main",
],
'paste.app_factory': [
'main = crdppf_core:main',
],
},
)