Add requirements to setup.py.

This commit is contained in:
Sergey Vartanov 2021-09-03 01:31:36 +03:00
parent 3ce2526847
commit c53b257aaf
2 changed files with 14 additions and 3 deletions

View file

@ -1,11 +1,10 @@
CairoSVG~=2.5.0 CairoSVG~=2.5.0
colour~=0.1.5 colour~=0.1.5
numpy>=1.18.1 numpy>=1.18.1
Pillow>=8.2.0
portolan~=1.0.1 portolan~=1.0.1
pycairo pycairo
pytest~=6.2.2 pytest~=6.2.2
PyYAML>=4.2b1 PyYAML>=4.2b1
Shapely
svgwrite~=1.4 svgwrite~=1.4
urllib3>=1.25.6 urllib3>=1.25.6
Pillow>=8.2.0

View file

@ -5,7 +5,7 @@ from setuptools import setup
setup( setup(
name="roentgen-map", name="roentgen-map",
version="0.1.0", version="0.1.1",
packages=["roentgen"], packages=["roentgen"],
url="https://github.com/enzet/Roentgen", url="https://github.com/enzet/Roentgen",
project_urls={ project_urls={
@ -27,4 +27,16 @@ setup(
"console_scripts": ["roentgen=roentgen.main:main"], "console_scripts": ["roentgen=roentgen.main:main"],
}, },
python_requires=">=3.9", python_requires=">=3.9",
install_requires=[
"CairoSVG>=2.5.0",
"colour>=0.1.5",
"numpy>=1.18.1",
"Pillow>=8.2.0",
"portolan>=1.0.1",
"pycairo",
"pytest>=6.2.2",
"PyYAML>=4.2b1",
"svgwrite>=1.4",
"urllib3>=1.25.6",
],
) )