-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.07 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
from setuptools import setup
def readme():
with open('oasis/README.rst') as f:
return f.read()
setup(name='oasis',
version='0.1.2',
description='Optimal Asymptotic Sequential Importance Sampling',
long_description=readme(),
keywords='F-measure active sampling evaluation classification recall precision',
url='http://ngmarchant.github.io/oasis',
author='Neil G. Marchant',
author_email='[email protected]',
license='MIT',
packages=['oasis'],
install_requires=[
'numpy',
'tables',
'scipy',
'sklearn',
'matplotlib',
'pandas'
],
include_package_data=True,
zip_safe=False,
classifiers=['Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',]
)