forked from espdev/csaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (67 loc) · 2.15 KB
/
setup.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
import pathlib
from setuptools import setup
ROOT_DIR = pathlib.Path(__file__).parent
def _get_version():
about = {}
ver_mod = ROOT_DIR / 'csaps' / '_version.py'
exec(ver_mod.read_text(), about)
return about['__version__']
def _get_long_description():
readme = ROOT_DIR / 'README.md'
changelog = ROOT_DIR / 'CHANGELOG.md'
return '{}\n{}'.format(
readme.read_text(encoding='utf-8'),
changelog.read_text(encoding='utf-8')
)
setup(
name='csaps',
version=_get_version(),
packages=['csaps'],
python_requires='>=3.6, <4',
install_requires=[
'numpy >=1.11.0, <1.20.0',
'scipy >=1.0.0, <1.6.0',
],
extras_require={
'docs': [
'sphinx >=2.3',
'matplotlib >=3.1',
'numpydoc',
'm2r',
],
'tests': [
'pytest',
'coverage',
],
},
package_data={"csaps": ["py.typed"]},
url='https://github.com/espdev/csaps',
project_urls={
'Documentation': 'https://csaps.readthedocs.io',
'Code': 'https://github.com/espdev/csaps',
'Issue tracker': 'https://github.com/espdev/csaps/issues',
},
license='MIT',
author='Eugene Prilepin',
author_email='esp.home@gmail.com',
description='Cubic spline approximation (smoothing)',
long_description=_get_long_description(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
],
)