Skip to content
Snippets Groups Projects
setup.py 1002 B
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",
      author="CEOTR",
      author_email="support@ceotr.ca",
      url="https://gitlab.oceantrack.org/ceotr/app_common.git",
      packages=find_packages(exclude=['tests']),
      package_data={'': ['*.yml-tpl', 'cf-standard-name-table.xml']},
      include_package_data=True,
      python_requires='>3.5',
      install_requires=install_requires,
      zip_safe=True
      )