This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.48 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# pylint: disable=consider-using-with, unspecified-encoding
from typing import List
from setuptools import find_packages, setup
def read_requirements(filename: str) -> List[str]:
"""Returns the contents of a requirements file, as a list."""
with open(filename, "r") as file:
requirements = file.read().strip().split("\n")
return requirements
# Requirements and Dependencies
dev_requires = read_requirements("dev-requirements.txt")
install_requires = read_requirements("requirements.txt")
setup(
name="fideslib",
version="3.1.5",
description="Shared libraries, for use in any fides project.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ethyca/fideslib",
author="Ethyca, Inc.",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
packages=find_packages(exclude=("tests*",)),
python_requires=">=3.8, <4",
dev_requires=dev_requires,
install_requires=install_requires,
)