-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.24 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
readme = f.read()
test_deps = [
"pytest",
]
extras = {
"test": test_deps,
}
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
setup(
name="toggler",
use_scm_version=True,
description="Feature Flags Manager",
long_description_content_type="text/markdown",
long_description=readme,
author="Versada (Andrius Laukavičius)",
author_email="[email protected]",
url="https://github.com/versada/toggler",
license="LGPLv3",
packages=find_packages(),
tests_require=test_deps,
extras_require=extras,
setup_requires=[
"setuptools_scm",
],
install_requires=install_requires,
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)