mirror of
https://github.com/Ahrimdon/detailed-cod-tracker.git
synced 2025-01-30 22:15:00 -05:00
10 lines
211 B
Python
10 lines
211 B
Python
|
from setuptools import setup
|
||
|
|
||
|
requirements = ["asyncio", "aiohttp", "datetime", "requests", "uuid", "urllib3", "enum34"]
|
||
|
|
||
|
setup(
|
||
|
name="cod_api",
|
||
|
packages=['cod_api'],
|
||
|
install_requires=requirements
|
||
|
)
|