Browse Source

Fixed requirements handling.

Do not depend on pip internal parsing of requirements.txt, reference
setup.py from requirements instead. Same for requirements_dev.txt, but
now use the extras_require and reference the 'testing' feature
dependencies.

See: https://caremad.io/posts/2013/07/setup-vs-requirement/
See: https://stackoverflow.com/a/27271396


Signed-off-by: Oldřich Jedlička <oldium.pro@gmail.com>
main
Oldřich Jedlička 7 years ago
parent
commit
c1b9fbddd1
3 changed files with 18 additions and 19 deletions
  1. +3
    -9
      requirements-dev.txt
  2. +5
    -1
      requirements.txt
  3. +10
    -9
      setup.py

+ 3
- 9
requirements-dev.txt View File

@@ -1,10 +1,4 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
# Development environment dependencies


py >= 1.4

hacking

pytest
pytest-cov
# Install testing dependencies from setup.py
.[testing]

+ 5
- 1
requirements.txt View File

@@ -1,2 +1,6 @@
# Package dependencies

setuptools setuptools
six

# Include package dependencies from setup.py
.

+ 10
- 9
setup.py View File

@@ -7,7 +7,6 @@ import subprocess
import sys import sys
import warnings import warnings


from pip.req import parse_requirements
from setuptools import setup, find_packages, Command from setuptools import setup, find_packages, Command
from setuptools.command.test import test as TestCommand from setuptools.command.test import test as TestCommand


@@ -124,12 +123,12 @@ class PreRelease(Command):
raise RuntimeError( raise RuntimeError(
"Current version of the package is equal or lower than the already published ones (PyPi). Increse version to be able to pass prerelease stage.") "Current version of the package is equal or lower than the already published ones (PyPi). Increse version to be able to pass prerelease stage.")


install_requires = [ 'six' ]


def get_requirements(*path):
req_path = os.path.join(*path)
reqs = parse_requirements(req_path, session=False)
return [str(ir.req) for ir in reqs]

# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
tests_require = [ 'py >= 1.4', 'hacking', 'pytest', 'pytest-cov' ]


setup( setup(
name=NAME, name=NAME,
@@ -137,10 +136,12 @@ setup(
cmdclass={'test': PyTest, 'release': Release, 'prerelease': PreRelease}, cmdclass={'test': PyTest, 'release': Release, 'prerelease': PreRelease},
packages=find_packages(exclude=['tests']), packages=find_packages(exclude=['tests']),
include_package_data=True, include_package_data=True,
tests_require=get_requirements(base_path, 'requirements-dev.txt'),
tests_require=tests_require,
setup_requires=['setuptools'], setup_requires=['setuptools'],
install_requires=get_requirements(base_path, 'requirements.txt'),

install_requires=install_requires,
extras_require={
'testing': tests_require
},
license='BSD', license='BSD',
description="WSDL parsing services package for Web Services for Python. see" + url, description="WSDL parsing services package for Web Services for Python. see" + url,
long_description=open("README.rst").read(), long_description=open("README.rst").read(),


Loading…
Cancel
Save