source: OpenWorkouts-current/setup.py @ ecfed69

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

Bumped version to 0.2.0, updated CHANGES.rst

  • Property mode set to 100644
File size: 2.0 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    'premailer'
39]
40
41translations_require = [
42    'babel',
43    'lingua'
44]
45
46tests_require = [
47    'WebTest >= 1.3.1',  # py3 compat
48    'pytest',
49    'pytest-cov',
50    'pytest-flakes',
51    'pytest-xdist',
52    'pytest-codestyle',
53]
54
55setup(
56    name='ow',
57    version='0.2.0',
58    description='OpenWorkouts, tracking your workouts openly',
59    long_description=README + '\n\n' + CHANGES,
60    classifiers=[
61        'Programming Language :: Python',
62        'Framework :: Pyramid',
63        'Topic :: Internet :: WWW/HTTP',
64        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
65    ],
66    author='Francisco de Borja Lopez Rio',
67    author_email='borja@codigo23.net',
68    url='https://openworkouts.org',
69    keywords='web pyramid pylons',
70    packages=find_packages(),
71    include_package_data=True,
72    zip_safe=False,
73    extras_require={
74        'testing': tests_require,
75        'translations': translations_require,
76    },
77    install_requires=requires,
78    entry_points={
79        'paste.app_factory': [
80            'main = ow:main',
81        ],
82    },
83)
Note: See TracBrowser for help on using the repository browser.