Skip to content

Commit

Permalink
added MANIFEST in order to avoid unnecessary assets in pypi pakcage
Browse files Browse the repository at this point in the history
  • Loading branch information
dariomalchiodi committed Oct 12, 2024
1 parent 4d125c7 commit 0752838
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 7 deletions.
9 changes: 4 additions & 5 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include settings.ini
include LICENSE
include CONTRIBUTING.md
include README.md
recursive-exclude * __pycache__
include src/**

exclude tests/**
exclude v0.1.8/**
9 changes: 8 additions & 1 deletion project.toml → pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development status" :: 4 - Beta"
"Development Status :: 4 - Beta"
]

dynamic = ['version']
Expand All @@ -35,5 +35,12 @@ Homepage = "https://github.com/dariomalchiodi/mulearn"
Documentation = "https://mulearn-mr.readthedocs.io/"
Issues = "https://github.com/dariomalchiodi/mulearn/issues"

[tool.setuptools]
include-package-data = false

[tool.setuptools.dynamic]
version = {attr = "mulearn.__version__"}

[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*", "v0.1.8*"]
2 changes: 1 addition & 1 deletion mulearn/__init__.py → src/mulearn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.3.1'
__version__ = '0.3.2'


import copy
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0752838

Please sign in to comment.