setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 19
dl 0
loc 22
rs 10
c 0
b 0
f 0
1
import setuptools
2
3
with open("README.md", "r") as fh:
4
    long_description = fh.read()
5
6
setuptools.setup(
7
    name="mutis",
8
    version="0.0.1",
9
    author="Juan Escudero & Jose Enrique Ruiz",
10
    author_email="[email protected], [email protected]",
11
    description="A Python package for muti-wavelength time series analysis.",
12
    long_description=long_description,
13
    long_description_content_type="text/markdown",
14
    url="https://github.com/bultako/mutis",
15
    packages=setuptools.find_packages(),
16
    classifiers=[
17
        "Programming Language :: Python :: 3",
18
        "License :: OSI Approved :: BSD License",
19
        "Operating System :: OS Independent",
20
    ],
21
    python_requires='>=3.11',
22
)