-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.25 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.25 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='sinterp',
version='0.2.0',
packages=['sinterp', ],
url='https://github.com/ndrwpvlv/sinterp',
license='MIT',
author='Andrei S. Pavlov',
author_email='ndrw.pvlv@gmail.com',
description='Simple fast linear interpolation for Python',
download_url='https://github.com/ndrwpvlv/sinterp/archive/0.2.0.tar.gz',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['interpolation', 'linear interpolation', ],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
install_requires=['attrs==21.2.0', 'importlib-metadata==4.5.0', 'iniconfig==1.1.1', 'packaging==20.9',
'pluggy==0.13.1', 'py==1.10.0', 'pyparsing==2.4.7', 'pytest==6.2.4', 'toml==0.10.2',
'typing-extensions==3.10.0.0', 'zipp==3.4.1', ],
)