Skip to content

Commit c03c442

Browse files
committed
Updated package metadata and configuration for PyPI upload
1 parent 3d4efe2 commit c03c442

File tree

8 files changed

+57
-19
lines changed

8 files changed

+57
-19
lines changed

my_project_template/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
"""Top-level package for My Project Template."""
2727

2828
__organization__ = "NMDP/CIBMTR Bioinformatics"
29-
__version__ = "0.0.8"
29+
__version__ = "0.0.9"

pyproject.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[build-system]
2+
requires = ["setuptools>=42", "wheel", "Cython>=0.29.32", "numpy>=1.20.2"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "py-graph-match-temp"
7+
version = "0.0.9"
8+
description = "A Python package for graph matching."
9+
readme = "README.md"
10+
requires-python = ">=3.6"
11+
license = { file = "LICENSE" }
12+
authors = [
13+
{ name = "Regev Yehezkel Imra", email = "[email protected]" }
14+
]
15+
dependencies = [
16+
"toml>=0.10.2",
17+
"py-graph-imputation>=0.0.12",
18+
"py-ard>=1.0.9",
19+
"tqdm>=4.66.1",
20+
]
21+
22+
[project.optional-dependencies]
23+
tests = [
24+
"pytest>=7.1.2",
25+
"behave>=1.2.6",
26+
"PyHamcrest>=2.0.3",
27+
]
28+
dev = [
29+
"allure-behave>=2.9.45",
30+
"flake8>=4.0.1",
31+
"bump2version>=1.0.1",
32+
"coverage>=6.3.2",
33+
"pre-commit>=2.18.1",
34+
]
35+
deploy = [
36+
"connexion[swagger-ui]>=2.13.0",
37+
"gunicorn>=20.1.0",
38+
]

requirements-deploy.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
connexion[swagger-ui]==2.13.0
2-
gunicorn==20.1.0
1+
connexion[swagger-ui]>=2.13.0
2+
gunicorn>=20.1.0

requirements-dev.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
allure-behave==2.9.45
2-
flake8==4.0.1
3-
bump2version==1.0.1
4-
coverage==6.3.2
5-
wheel==0.37.1
6-
pre-commit==2.18.1
1+
allure-behave>=2.9.45
2+
flake8>=4.0.1
3+
bump2version>=1.0.1
4+
coverage>=6.3.2
5+
wheel>=0.37.1
6+
pre-commit>=2.18.1

requirements-tests.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==7.1.2
2-
behave==1.2.6
3-
PyHamcrest==2.0.3
1+
pytest>=7.1.2
2+
behave>=1.2.6
3+
PyHamcrest>=2.0.3

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
toml==0.10.2
2-
py-graph-imputation==0.0.12
3-
py-ard==1.0.9
4-
tqdm==4.66.1
1+
toml>=0.10.2
2+
py-graph-imputation>=0.0.12
3+
py-ard>=1.0.9
4+
tqdm>=4.66.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.8
2+
current_version = 0.0.9
33
commit = True
44
tag = True
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def build_include_dirs():
5252
test_requirements = requirements_file.read().split("\n")
5353

5454
setup(
55-
name="py-graph-match",
56-
version="0.0.8",
55+
name="py-graph-match-temp",
56+
version="0.0.9",
5757
author="Pradeep Bashyal",
5858
author_email="[email protected]",
5959
python_requires=">=3.8",

0 commit comments

Comments
 (0)