-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 883 Bytes
/
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
from pathlib import Path
from setuptools import setup, find_packages
_here = Path(__file__).parent
with open(_here / 'README.md', 'r') as f:
long_description = f.read()
setup(
name='pytan',
version='0.1.0',
description='scikit-learn compatible implementation of Tree Augmented Naïve Bayes',
long_description=long_description,
long_description_content_type='text/markdown',
author='Adam Chidlow',
author_email='[email protected]',
license='Apache License 2.0',
url='https://github.com/achidlow/pytan',
packages=find_packages(where='src'),
package_dir={'': 'src'},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
install_requires=[
'numpy',
'scipy',
'scikit-learn',
]
)