-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 845 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 845 Bytes
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
from setuptools import setup, find_packages
setup(
name="tokenomics",
version="0.1.0",
packages=find_packages(where="backend"),
package_dir={"": "backend"},
python_requires=">=3.9",
install_requires=[
"fastapi>=0.115.7",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"pytest>=8.0.0",
"pyjwt>=2.8.0",
"python-multipart>=0.0.6",
"httpx>=0.24.1",
],
extras_require={
"dev": [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
"pylint>=2.17.0"
],
"test": [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"httpx>=0.24.1",
"pytest-asyncio>=0.21.0"
]
}
)