File: setup.py

package info (click to toggle)
python-scooby 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 1,115; makefile: 32
file content (43 lines) | stat: -rw-r--r-- 1,277 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
36
37
38
39
40
41
42
43
from __future__ import annotations

import os
import pathlib

import setuptools

with pathlib.Path('README.md').open('r', encoding='utf-8') as f:
    long_description = f.read()

setuptools.setup(
    name='scooby',
    author='Dieter Werthmüller, Bane Sullivan, Alex Kaszynski, and contributors',
    author_email='info@pyvista.org',
    description='A Great Dane turned Python environment detective',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='https://github.com/banesullivan/scooby',
    packages=setuptools.find_packages(),
    entry_points={
        'console_scripts': [
            'scooby=scooby.__main__:main',
        ],
    },
    classifiers=[
        'Programming Language :: Python',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Intended Audience :: Science/Research',
        'Natural Language :: English',
    ],
    python_requires='>=3.8',
    extras_require={
        'cpu': ['psutil', 'mkl'],
    },
    use_scm_version={
        'root': '.',
        'relative_to': __file__,
        'write_to': os.path.join('scooby', 'version.py'),  # noqa: PTH118
    },
    setup_requires=['setuptools_scm'],
    package_data={'scooby': ['py.typed']},
)