-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 827 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 827 Bytes
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
from setuptools import setup
setup(
name='abcd_rf_fit',
version='0.1.3',
description='Rational function fit library',
url='https://github.com/UlysseREGLADE/abcd_rf_fit',
author='Ulysse REGLADE',
author_email='ulysse.reglade@yahoo.fr',
license='License :: OSI Approved :: BSD License',
packages=['abcd_rf_fit'],
install_requires=['numpy',
'matplotlib',
'scipy'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)