Skip to content

Commit

Permalink
Exclude tests from packaging. (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed May 14, 2022
1 parent cc92f86 commit 217e7d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
**/.idea/
dist/
*.egg-info/
__pycache__/
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,15 @@
description="Rust inspired Result and Option types",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
url="https://github.com/danielSanchezQ/rusty_results",
package_data={".": ["py.typed"]},
packages=setuptools.find_packages(
".",
exclude=[
"tests*",
"examples*"
]
),
packages=setuptools.find_packages(exclude=("*tests*",)),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
extras_require={
'pydantic': ["pydantic"]
"pydantic": ["pydantic"]
},
python_requires='>=3.7'
)

0 comments on commit 217e7d0

Please sign in to comment.