Skip to content
Snippets Groups Projects
Select Git revision
  • 3f1109201f95aa1d09d840f3d6484c664635f540
  • main default protected
  • v0.1.12
  • 0.1.11
  • v1.0.10
  • v1.0.9
  • v0.1.8
  • v0.1.7
  • v0.1.6
  • v0.1.5
  • v0.1.4
  • v0.1.3
  • v0.1.2
  • commit
  • v0.1.1
  • v0.1.0
16 results

setup.py

Blame
  • setup.py 1.23 KiB
    #! /usr/bin/env python3
    # -*- coding:Utf8 -*-
    from setuptools import find_packages, setup
    
    long_description = ""
    with open('README.md', encoding='utf-8') as file:
        long_description = file.read()
    
    # -------------------------------------------------------------------------------------------------------------
    # Call the setup function:
    # -------------------------------------------------------------------------------------------------------------
    setup(
        name='nsstools',
        version='0.1.12',
        author='Nicolas Leclerc, Carine Babusiaux, Jean-Louis Halbwachs',
        author_email="gaia.project@obspm.fr",
        licence='CeCILL-2.1',
        description='Tools for calculate campbell and covmat from Gaia CU4 sources',
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://gitlab.obspm.fr/gaia/nsstools.git",
        packages=find_packages(exclude=["tests"]),
        test_suite='tests',
        install_requires=[
            'numpy', 
            'pandas'
        ],
        python_requires='>=3.5',
        classifiers=[
            "Programming Language :: Python :: 3",
            "Development Status :: 5 - Production/Stable",
            "Programming Language :: Python :: 3.5",
            "Topic :: Scientific/Engineering :: Astronomy"
        ],
    )