Skip to content
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #18 from ethyca/setup
Browse files Browse the repository at this point in the history
Fix setup.py packages
  • Loading branch information
pattisdr authored Jun 6, 2022
2 parents 59b9bf2 + 5c4d270 commit 12425de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import List

from setuptools import setup
from setuptools import find_packages, setup


def read_requirements(filename: str) -> List[str]:
Expand All @@ -19,7 +19,7 @@ def read_requirements(filename: str) -> List[str]:

setup(
name="fideslib",
version="2.0.1",
version="2.0.2",
description="Shared libraries, for use in any fides project.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand All @@ -38,7 +38,7 @@ def read_requirements(filename: str) -> List[str]:
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
package_dir={"": "fideslib"},
packages=find_packages(exclude=("tests*",)),
python_requires=">=3.8, <4",
dev_requires=dev_requires,
install_requires=install_requires,
Expand Down

0 comments on commit 12425de

Please sign in to comment.