-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.46 KB
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
46
47
from setuptools import setup, find_packages
setup(
name="configflow",
version="0.1.0",
description="A Python library for event-driven configuration management",
long_description=open("docs/source/README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Chinmay Sonawane",
author_email="chinmaysonawane57@gmail.com",
url="https://github.com/chinmay29hub/configflow",
project_urls={
"Homepage": "https://github.com/chinmay29hub/configflow",
"Repository": "https://github.com/chinmay29hub/configflow.git",
"Issues": "https://github.com/chinmay29hub/configflow/issues",
"Documentation": "https://configflow.readthedocs.io/",
},
packages=find_packages(),
install_requires=[
"watchdog>=2.0",
"PyYAML>=6.0",
"orjson>=3.0",
"pydantic>=2.0",
"python-dotenv>=1.1",
],
extras_require={
"dev": [
"pytest>=7.0",
"black>=23.0",
"isort>=5.0",
"sphinx>=5.0",
"sphinx-rtd-theme>=1.0",
"myst-parser>=0.18",
"types-setuptools",
"types-PyYAML",
"pylint>=3.0",
"mypy>=1.0",
"python-dotenv>=1.1",
],
},
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)