diff --git a/.gitignore b/.gitignore index 6d1767f..185a32c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ **/.idea/ +dist/ +*.egg-info/ +__pycache__/ diff --git a/setup.py b/setup.py index 036960d..13ae2e6 100644 --- a/setup.py +++ b/setup.py @@ -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' )