-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
executable file
·30 lines (28 loc) · 1.1 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='densratio',
version='0.3.0',
description='A Python Package for Density Ratio Estimation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/hoxo-m/densratio_py',
author='Koji Makiyama, Ameya Daigavane, Krzysztof Mierzejewski',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='density ratio estimation, anomaly detection, change point detection, covariate shift',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['numpy'],
project_urls={
'Bug Reports': 'https://github.com/hoxo-m/densratio_py/issues',
'Source': 'https://github.com/hoxo-m/densratio_py',
},
license="MIT + file LICENSE",
test_suite='tests',
)