-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restrict python package distribution only to src/reprostim and related
- Loading branch information
1 parent
8ec10cd
commit b524d85
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ authors = [ | |
{ name = "Vadim Melnik", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
|
@@ -31,6 +31,12 @@ Documentation = "https://github.com/ReproNim/reprostim" | |
Issues = "https://github.com/ReproNim/reprostim/issues" | ||
Source = "https://github.com/ReproNim/reprostim" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/src/reprostim/", | ||
"/tests", | ||
] | ||
|
||
[tool.hatch.version] | ||
path = "src/reprostim/__about__.py" | ||
|
||
|