-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
44 lines (38 loc) · 1.17 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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
from os import path
HERE = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(HERE, 'README.rst')) as f:
return f.read()
setup(
name='choix',
version='0.3.6',
author='Lucas Maystre',
author_email='lucas@maystre.ch',
description="Inference algorithms for models based on Luce's choice axiom.",
long_description=readme(),
long_description_content_type='text/x-rst',
url='https://github.com/lucasmaystre/choix',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='statistics ml bradley terry plackett luce choice comparison ranking',
packages=['choix'],
install_requires=[
'numpy',
'scipy',
],
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'networkx>=1,<3',
],
include_package_data=True,
zip_safe=False,
)