Skip to content

Commit

Permalink
Merge branch 'main' into 130-make-fd_cache_size-configureable-via-env…
Browse files Browse the repository at this point in the history
…-variable
  • Loading branch information
kazmiekr authored Jan 22, 2024
2 parents 2609702 + 5fadcfc commit 5a37f18
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @reece
* @biocommons/maintainers
20 changes: 15 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,28 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dynamic = ["version", "optional-dependencies"]
dependencies = [
"bioutils > 0.4",
"coloredlogs",
"ipython",
"pysam",
"requests",
"requests_html",
"six",
"tqdm",
"yoyo-migrations"
]

[project.urls]
"Homepage" = "https://github.com/biocommons/biocommons.seqrepo"
"Bug Tracker" = "https://github.com/biocommons/biocommons.seqrepo/issues"


[build-system]
requires = [
"setuptools >= 65.3",
"setuptools_scm[toml] ~= 7.0"
]
"setuptools >= 69.0.2",
"setuptools_scm[toml] >= 8.0"
]
build-backend = "setuptools.build_meta"


Expand Down
16 changes: 4 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
[metadata]
name = biocommons.seqrepo

[options]
include_package_data = True
packages = find_namespace:
package_dir =
= src
zip_safe = True

install_requires =
bioutils>0.4
coloredlogs
ipython
pysam
requests
requests_html
six
tqdm
yoyo-migrations

[options.extras_require]
dev =
bandit
Expand All @@ -29,7 +21,7 @@ dev =
setuptools_scm
vcrpy
wheel
docs =
docs =
mkdocs

[options.entry_points]
Expand Down

0 comments on commit 5a37f18

Please sign in to comment.