forked from mazvv/travelcrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (86 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import os
import sys
try:
from subprocess import check_output
except ImportError:
pass
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.txt')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
if 'sdist' in sys.argv or 'bdist' in sys.argv:
with open(os.path.join(here, 'VERSION.txt'), 'w') as f:
build = (
check_output([
"hg", "log", "-r", ".", "--template", "{branch} b.{node|short}"
])
)
f.write(build)
requires = [
'setuptools',
'pyramid',
'pyramid_mako',
'pyramid_debugtoolbar',
'pyramid_tm',
'SQLAlchemy>=1.1.0b3',
'transaction',
'zope.sqlalchemy',
'waitress',
'colander>=1.3.1',
'wsgithumb',
'alembic',
'WebHelpers2',
'pyramid_layout',
'psycopg2',
'pyramid_beaker',
'Babel>=1.3',
'phonenumbers>=7.0.2',
'pyramid_storage>=0.0.5',
'pyramid_mailer>=0.14',
'Sphinx>=1.2.2',
'apscheduler>=3.0.1',
'bitmath>=1.0.2-3',
'smpplib>=0.1',
'Mock>=2.0.0',
'python_dateutil>=2.4.0',
'nose',
'redis>=2.10.5',
]
setup(
name='travelcrm',
version='0.6.5-beta1',
description='travelcrm',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Vitalii Mazur',
author_email='[email protected]',
url='http://www.travelcrm.org.ua',
keywords='web wsgi bfg pylons pyramid travel crms',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='travelcrm',
install_requires=requires,
entry_points="""\
[paste.app_factory]
main = travelcrm:main
[console_scripts]
initialize_travelcrm_db = travelcrm.scripts.initializedb:main
[pyramid.scaffold]
travelcrm = scaffold:TravelcrmProjectTemplate
""",
message_extractors={
'travelcrm': [
('**.py', 'python', None),
('templates/**.mako', 'mako', None),
('static/**', 'ignore', None)
]
},
)