setup.py: add requires for external packages

Fixes #100
pull/105/head
Peter Hutterer 2018-02-20 11:03:01 +10:00
parent caf1264952
commit 108f1720b8
1 changed files with 6 additions and 1 deletions

View File

@ -20,5 +20,10 @@ setup(name='tuhi',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
python_requires='>=3.6'
python_requires='>=3.6',
install_requires=[
'svgwrite',
'gi',
'xdg',
]
)