Skip to content
Snippets Groups Projects
Commit c5a2cfb5 authored by xaingling's avatar xaingling
Browse files

motify setup for windows machine

parent 27cc6f33
No related branches found
No related tags found
1 merge request!31Windows install
import platform
from setuptools import setup, find_packages
if platform.system().lower() == 'windows':
install_requires = [
"pytz",
"netCDF4",
"pandas",
"PyYAML",
"pexpect",
'twisted',
"mockssh",
"mysql-connector-python",
"erddapy"
]
else:
install_requires = [
"pytz",
"netCDF4",
"pandas",
"PyYAML",
"pexpect",
"mockssh",
"mysql-connector-python",
"erddapy"
]
setup(name='app_common',
version='1.0.7',
description="Common python and django application tools",
......@@ -10,15 +35,6 @@ setup(name='app_common',
package_data={'': ['*.yml-tpl', 'cf-standard-name-table.xml']},
include_package_data=True,
python_requires='>3.5',
install_requires=[
"pytz",
"netCDF4",
"pandas",
"PyYAML",
"pexpect",
"mockssh",
"mysql-connector-python",
"erddapy"
],
install_requires=install_requires,
zip_safe=True
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment