-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (44 loc) · 1.35 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
# coding: utf-8
"""
Setup script for numericalderivative
====================================
This script allows to install numericalderivative within the Python environment.
Usage
-----
::
python setup.py install
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="numericalderivative",
keywords=[
"Numerical Differentiation",
"First Derivative",
"Finite Difference",
"Optimal Step Size",
"Numerical Analysis",
],
version="0.3",
packages=find_packages(),
install_requires=["numpy", "scipy"],
description="Numerical differentiation",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
],
license="LGPL",
url="https://github.com/mbaudin47/numericalderivative",
author="Michaël Baudin",
author_email="michael.baudin@gmail.com",
)