-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 950 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
28
29
30
31
32
from setuptools import setup, find_packages
import os
def read_requirements():
with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), encoding="utf-8") as f:
return f.read().splitlines()
setup(
name="feafea",
version="0.1.0",
author="Mathspace Pty. Ltd.",
author_email="[email protected]",
description="A simple feature flag system",
long_description=open("Readme.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mathspace/feafea",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
package_data={
"feafea": ["config_shema.json"],
},
install_requires=read_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)