-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 795 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='wrandai',
description='This is a repository for calculating the W Randomness Coefficient \
of a set of algorithms on a suite of Machine Learning benchmarks.',
url='https://github.com/willleeney/wrandai',
author='William Leeney',
author_email='will.leeney@outlook.com',
license='MIT',
version='0.3.0',
packages=['wrandai'],
install_requires=['scipy', 'numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
' Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
],
)