-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 928 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 928 Bytes
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
#!/usr/bin/env python
import setuptools
with open('README.md', 'r') as fp:
long_description = fp.read()
setuptools.setup(
name='predecon-exioreed',
version='0.1.1',
author='Maximilian Kaulmann',
author_email='exioreed@ownlink.eu',
description='PreDeCon - An Implementation in Python, Compatible With Scikit-Learn',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/exioReed/PreDeCon.git',
packages=setuptools.find_packages(),
install_requires=[
'joblib>=0.14.0',
'numpy>=1.15.4',
'scikit-learn>=0.22.1',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
python_requires='>=3.6',
)