-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (26 loc) · 918 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="flagsmith-flag-engine",
version="5.3.0",
author="Flagsmith",
author_email="[email protected]",
packages=find_packages(include=["flag_engine", "flag_engine.*"]),
package_data={"flag_engine": ["py.typed"]},
url="https://github.com/Flagsmith/flagsmith-engine",
license="BSD3",
description="Flag engine for the Flagsmith API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"pydantic>=2.3.0,<3",
"pydantic-collections>=0.5.1,<1",
"semver>=3.0.1",
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)