File size: 755 Bytes
9befc00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name="supply-roster-tool-real",
    version="0.1.0",
    description="Supply roster optimization tool",
    author="HaLim Jun",
    author_email="hjun@unicef.org",
    packages=find_packages(),
    install_requires=[
        "absl-py==2.3.1",
        "dotenv==0.9.9", 
        "immutabledict==4.2.1",
        "numpy==2.2.6",
        "ortools==9.14.6206",
        "pandas==2.3.1",
        "protobuf==6.31.1",
        "psycopg2-binary==2.9.9",
        "python-dateutil==2.9.0.post0",
        "python-dotenv==1.0.0",
        "pytz==2025.2",
        "six==1.17.0",
        "SQLAlchemy==2.0.36",
        "typing_extensions==4.14.1",
        "tzdata==2025.2",
    ],
    python_requires=">=3.10,<3.11",
)