-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.06 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
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name="samplersLib",
author="Ahmed H. Bayoumy",
author_email="ahmed.bayoumy@mail.mcgill.ca",
version='2408.0',
packages=find_packages(include=['samplersLib', 'samplersLib.*']),
description="A samplers library for both online and offline active sampling",
install_requires=[
'numpy>=1.22.4',
'pyDOE2>=1.3.0',
'scipy>=1.8.1',
'setuptools>=58.1.0',
'requests>=2.20.0',
'pandas',
'plotly>=5.14.1'
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Developers',
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)