Skip to main content

Automatically inserts your currently used package versions to setup.py.

Project description

pypkgfreeze

Python's npm install --save

Code style: black Build Status

Automatically inserts your currently used package versions to setup.py.

Example

Old setup.py

from setuptools import setup
test_req = ['pytest', ]
setup(
    name='pypkgfreeze',
    install_requires=[
        "Click",
    ],
    tests_require=test_req,
    extras_require={
        'test': test_req
    }
)

New setup.py

from setuptools import setup
test_req = ['pytest==4.0.2', ]  # ADDED VERSION HERE
setup(
    name='pypkgfreeze',
    install_requires=[
        "Click==7.0",  # AND HERE
    ],
    tests_require=test_req,
    extras_require={
        'test': test_req
    }
)

Usage

pkgfreeze. It's that simple.

Installation

pip install pypkgfreeze

Contributing

Thanks! Please read the CONTRIBUTING.md file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypkgfreeze-0.1.6.tar.gz (2.5 kB view details)

Uploaded Source

File details

Details for the file pypkgfreeze-0.1.6.tar.gz.

File metadata

  • Download URL: pypkgfreeze-0.1.6.tar.gz
  • Upload date:
  • Size: 2.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.7

File hashes

Hashes for pypkgfreeze-0.1.6.tar.gz
Algorithm Hash digest
SHA256 57f08f847cf6b013cd7ae24196aee84a1a05633463a2af25adb3dbef6ecfa56f
MD5 4d42e1b4a6f513d6ece626698d3ad1ea
BLAKE2b-256 a1f83eb3eed4136bbbec0d78d2232d50e830acaf181fd1eec868f3eab5bc94f4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page