mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-06 03:25:21 +00:00
fix(package): include stdlib in package
This commit is contained in:
parent
3c50d703ff
commit
68e08af6c5
@ -8,4 +8,4 @@ recursive-include tests *
|
||||
recursive-exclude * __pycache__
|
||||
recursive-exclude * *.py[co]
|
||||
|
||||
recursive-include docs *.rst conf.py Makefile make.bat
|
||||
recursive-include docs *.rst conf.py Makefile make.bat stdlib
|
||||
|
3
Makefile
3
Makefile
@ -58,8 +58,7 @@ docs:
|
||||
open docs/_build/html/index.html
|
||||
|
||||
release: clean
|
||||
python setup.py sdist upload
|
||||
python setup.py bdist_wheel upload
|
||||
python setup.py sdist bdist_wheel upload -r pypi
|
||||
|
||||
dist: clean
|
||||
python setup.py sdist
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/python
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""pipreqs - Generate pip requirements.txt file based on imports
|
||||
|
||||
|
5
setup.py
5
setup.py
@ -24,7 +24,7 @@ test_requirements = [
|
||||
|
||||
setup(
|
||||
name='pipreqs',
|
||||
version='0.1.1',
|
||||
version='0.1.4',
|
||||
description="Pip requirements.txt generator based on imports in project",
|
||||
long_description=readme + '\n\n' + history,
|
||||
author="Vadim Kravcenko",
|
||||
@ -36,8 +36,9 @@ setup(
|
||||
package_dir={'pipreqs':
|
||||
'pipreqs'},
|
||||
include_package_data=True,
|
||||
package_data={'': ['stdlib']},
|
||||
install_requires=requirements,
|
||||
license="Apache License 2.0",
|
||||
license="Apache License",
|
||||
zip_safe=False,
|
||||
keywords='pip requirements imports',
|
||||
classifiers=[
|
||||
|
Loading…
x
Reference in New Issue
Block a user