22 lines
523 B
Python
22 lines
523 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="sia",
|
|
version="0.1.0",
|
|
packages=find_packages(),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'sia=sia.__main__:main',
|
|
],
|
|
},
|
|
install_requires=[
|
|
'aiohttp>=3.8.0',
|
|
'ipykernel>=6.0.0',
|
|
'ipywidgets>=8.0.0',
|
|
'lxml>=4.9.0',
|
|
'psutil>=5.9.0',
|
|
'python-dotenv>=1.0.0',
|
|
'xml_schema_validator @ file:///root/sia/lib/xml_schema_validator',
|
|
],
|
|
python_requires='>=3.10',
|
|
) |