source: OpenWorkouts-current/setup.py @ 42d775c

currentfeature/docs
Last change on this file since 42d775c was 42d775c, checked in by Borja Lopez <borja@…>, 5 years ago

(#61) Switched the repoze.sendmail dependency to our own repository in github,
which contains an important bugfix for a bug that was hitting us.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1import os
2
3from setuptools import setup, find_packages
4
5here = os.path.abspath(os.path.dirname(__file__))
6with open(os.path.join(here, 'README.rst')) as f:
7    README = f.read()
8with open(os.path.join(here, 'CHANGES.rst')) as f:
9    CHANGES = f.read()
10
11requires = [
12    'plaster_pastedeploy',
13    'pyramid',
14    'pyramid_chameleon',
15    'pyramid_debugtoolbar',
16    'pyramid_retry',
17    'pyramid_tm',
18    'pyramid_zodbconn',
19    'pyramid_simpleform==0.7dev0',  # version needed for python3
20    'pyramid_mailer',
21    'transaction',
22    'ZODB3',
23    'waitress',
24    'repoze.folder',
25    'repoze.sendmail @ git+https://github.com/WuShell/repoze.sendmail.git@4.4.2'
26    '#egg=repoze.sendmail-4.4.2',
27    'repoze.catalog @ git+https://github.com/WuShell/repoze.catalog.git@0.8.4'
28    '#egg=repoze.catalog-0.8.4',
29    'bcrypt',
30    'FormEncode',
31    'unidecode',
32    'gpxpy',
33    'lxml',
34    'pytz',
35    'fitparse',
36    'splinter',
37    'Pillow'
38]
39
40tests_require = [
41    'WebTest >= 1.3.1',  # py3 compat
42    'pytest',
43    'pytest-cov',
44    'pytest-flakes',
45    'pytest-xdist',
46    'pytest-codestyle',
47]
48
49setup(
50    name='ow',
51    version='0.2.0a0',
52    description='OpenWorkouts, tracking your workouts openly',
53    long_description=README + '\n\n' + CHANGES,
54    classifiers=[
55        'Programming Language :: Python',
56        'Framework :: Pyramid',
57        'Topic :: Internet :: WWW/HTTP',
58        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
59    ],
60    author='Francisco de Borja Lopez Rio',
61    author_email='borja@codigo23.net',
62    url='https://openworkouts.org',
63    keywords='web pyramid pylons',
64    packages=find_packages(),
65    include_package_data=True,
66    zip_safe=False,
67    extras_require={
68        'testing': tests_require,
69    },
70    install_requires=requires,
71    entry_points={
72        'paste.app_factory': [
73            'main = ow:main',
74        ],
75    },
76)
Note: See TracBrowser for help on using the repository browser.