| author | Sandro Knauß <knauss@netzguerilla.net> |
| Fri, 10 Aug 2012 13:13:20 +0200 | |
| branch | devel |
| changeset 285 | 9eb5b7ff0e38 |
| parent 237 | eb3501d2cdc9 |
| child 289 | dd610c9d6a12 |
| permissions | -rw-r--r-- |
| 82 | 1 |
# -*- coding: utf-8 -*- |
2 |
||
|
0
a3b6e531f0d2
[svn r93] creating iro package branch
Sandro Knauß <knauss@netzguerilla.net>
parents:
diff
changeset
|
3 |
from setuptools import setup |
| 82 | 4 |
from iro import __version__ |
5 |
||
6 |
setup(name='iro', |
|
7 |
version=__version__, |
|
|
237
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
8 |
packages=['iro','iro.controller','iro.view','iro.model','iro.offer','iro.tests', 'iro.test_helpers'], |
|
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
9 |
setup_requires = ["ngmodules>=0.2","mock", 'setuptools_trial'], |
|
124
6efcdf7e2d62
we need nothing that is in the standard core
Sandro Knauß <knauss@netzguerilla.net>
parents:
115
diff
changeset
|
10 |
install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator'], |
|
237
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
11 |
#test_suite="tests", #ToDo switch to trial |
| 82 | 12 |
description='Non Blocking Interface for sending a bunsh of SMSes, FAXes and Mails', |
13 |
author='Sandro Knauß', |
|
14 |
author_email='knauss@netzguerilla.net', |
|
15 |
url='https://netzguerilla.net/admin/hg/iro', |
|
|
237
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
16 |
scripts=["bin/iro-install"], |
|
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
17 |
#entry_points = { |
|
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
18 |
# 'console_scripts': ['iro = iro.py',], |
|
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
19 |
# } |
|
eb3501d2cdc9
update setup.py file and moving some scripts to subdirs
Sandro Knauß <knauss@netzguerilla.net>
parents:
228
diff
changeset
|
20 |
) |