-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (53 loc) · 1.64 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
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = """por.models
=============
for more details visit: http://getpenelope.github.com/"""
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'distribute',
'SQLAlchemy',
'zope.sqlalchemy',
'psycopg2',
'plone.i18n',
'transaction',
'PasteScript',
'lorem-ipsum-generator',
'Trac',
'profilehooks',
'por.dashboard',
'gspread'
]
if sys.version_info[:3] < (2, 5, 0):
requires.append('pysqlite')
setup(name='por.models',
version='1.3.23.dev0',
description='SQLAlchemy models for Penelope',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
keywords='web wsgi bfg pylons pyramid',
namespace_packages=['por'],
author='Penelope Team',
author_email='[email protected]',
url='http://getpenelope.github.com',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
test_suite='por.models.tests',
entry_points="""\
[console_scripts]
populate_penelope = por.models.scripts.populate:main
populate_with_dummies = por.models.scripts.dummies:main
import_svn = por.models.scripts.importsvn:main
quality_export = por.models.scripts.quality_export:main
contracts_import = por.models.scripts.contracts_import:main
""",
)