Skip to content

Commit

Permalink
Modularize
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed May 10, 2024
1 parent 8aea908 commit 8aa686c
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
with:
python-version: "3.12"
- run: |
cd bincrafter_conan_remote/
pip install -r requirements.txt
pip install -r requirements_dev.txt
- name: Start Local Server
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
with:
python-version: "3.12"
- run: |
cd bincrafter_conan_remote/
pip install -r requirements.txt
pip install -r requirements_dev.txt
- name: Configure Conan
Expand Down
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def get_requires(filename):
return requirements


project_requirements = get_requires("requirements.txt")
# dev_requirements = get_requires("requirements_dev.txt")
project_requirements = get_requires(os.path.join("bincrafters_conan_remote", "requirements.txt"))
# dev_requirements = get_requires(os.path.join("bincrafters_conan_remote", "requirements_dev.txt"))


setup(
Expand Down Expand Up @@ -97,11 +97,10 @@ def get_requires(filename):
#},

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
# package_data={
# 'conans': ['*.txt'],
#},
# installed, specify them here.
package_data={
"bincrafters_conan_remote": ["remote_repo_meta_files/*", "remote_repo_meta_files/.gitignore"],
},

# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
Expand Down

0 comments on commit 8aa686c

Please sign in to comment.