Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include the api/requirements.txt file in the PyPI package #89

Merged
merged 2 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ graft fideslog/sdk/python
include dev-requirements.txt
include versioneer.py
prune fideslog/api
include fideslog/api/requirements.txt
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from versioneer import get_cmdclass, get_version

api_requires = open("./fideslog/api/requirements.txt").read().strip().split("\n")
sdk_requires = open("./fideslog/sdk/python/requirements.txt").read().strip().split("\n")
dev_requires = open("./dev-requirements.txt").read().strip().split("\n")

Expand All @@ -11,7 +10,7 @@
version=get_version(),
cmdclass=get_cmdclass(),
description="The fideslog analytics collection mechanism",
long_description=open("./README.md").read(),
long_description=open("./fideslog/sdk/python/README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ethyca/fideslog",
python_requires=">=3.8, <4",
Expand All @@ -26,7 +25,7 @@
author="Ethyca, Inc.",
author_email="fidesteam@ethyca.com",
license="Apache License 2.0",
install_requires=api_requires + sdk_requires,
install_requires=sdk_requires,
dev_requires=dev_requires,
classifiers=[
"License :: OSI Approved :: Apache Software License",
Expand Down