-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 922 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='peip',
version='0.0.1',
description='peiplib : Python codes and Jupyter Notebooks for '
'examples for the 3rd edition of Parameter Estimation '
'and Inverse Problems',
long_description=read('README.md'),
url='https://gitlab.com/nimanzik/peiplib',
author='Nima Nooshiri',
author_email='nima.nooshiri@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'],
keywords='parameter-estimation inverse-problem inversion',
python_requires='>=3.8',
packages=['peiplib'],
package_dir={'peiplib': 'peiplib'})