source: OpenWorkouts-current/setup.py @ d4cabcc

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

Remove dependency_links from setup.py.

There is no need to keep using this, and starting with pip 19.0 it does not
recognize such option anymore.

  • Property mode set to 100644
File size: 1.7 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.txt')) as f:
7    README = f.read()
8with open(os.path.join(here, 'CHANGES.txt')) 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    'transaction',
20    'ZODB3',
21    'waitress',
22    'repoze.folder',
23    'repoze.catalog @ git+https://github.com/WuShell/repoze.catalog.git@0.8.4'
24    '#egg=repoze.catalog-0.8.4',
25    'bcrypt',
26    'FormEncode',
27    'pyramid_simpleform==0.7dev0',  # version needed for python3
28    'unidecode',
29    'gpxpy',
30    'lxml',
31    'pytz',
32    'fitparse'
33]
34
35tests_require = [
36    'WebTest >= 1.3.1',  # py3 compat
37    'pytest',
38    'pytest-cov',
39    'pytest-flakes',
40    'pytest-xdist',
41    'pytest-codestyle',
42]
43
44setup(
45    name='ow',
46    version='0.1',
47    description='OpenWorkouts, tracking your workouts openly',
48    long_description=README + '\n\n' + CHANGES,
49    classifiers=[
50        'Programming Language :: Python',
51        'Framework :: Pyramid',
52        'Topic :: Internet :: WWW/HTTP',
53        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
54    ],
55    author='Francisco de Borja Lopez Rio',
56    author_email='borja@codigo23.net',
57    url='https://openworkouts.org',
58    keywords='web pyramid pylons',
59    packages=find_packages(),
60    include_package_data=True,
61    zip_safe=False,
62    extras_require={
63        'testing': tests_require,
64    },
65    install_requires=requires,
66    entry_points={
67        'paste.app_factory': [
68            'main = ow:main',
69        ],
70    },
71)
Note: See TracBrowser for help on using the repository browser.