File: setup.py

package info (click to toggle)
pyimagetool 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,016 kB
  • sloc: python: 3,183; xml: 51; makefile: 9
file content (35 lines) | stat: -rw-r--r-- 1,113 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
from pathlib import Path

setup_path = Path(__file__).parent

with open(Path(setup_path, 'Readme.md'), "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="pyimagetool",
    version="1.0",
    author="Kyle Gordon",
    author_email="kgord831@gmail.com",
    description="Python Image Tool for multidimensional analysis",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/kgord831/PyImageTool",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.7.9',
    install_requires=[
        'numpy',
        'pyqtgraph',
        'scipy',
        'Pillow'
    ],
    package_data={'pyimagetool': ['cmaps/data/scivis_cmaps/*.xml',
                                  'cmaps/data/CETperceptual_csv_0_255/*.csv',
                                  'cmaps/data/*.npy', 'cmaps/data/*.jpg',
                                  'data/*.npy']}
)