-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.04 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as fh:
long_description = fh.read()
setup(
name='thetafit',
version='0.0.1',
packages=['thetafit'],
url='https://github.com/solbes/thetafit',
download_url = 'https://github.com/solbes/thetafit/archive/refs/tags/0.0.1.tar.gz',
license='MIT',
author='Antti Solonen',
author_email='antti.solonen@gmail.com',
description='Parameter estimation for nonlinear models',
keywords=['bayes', 'nonlinear', 'parameter estimation'],
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib'],
extras_require={
'dev': ['pytest']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
],
long_description=long_description,
long_description_content_type="text/markdown",
)