-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
CURRENT_DIR = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (CURRENT_DIR / 'README.md').read_text(encoding='utf-8')
# Setting up
setup(
name="isv",
version="VERSION",
author="Tomas Sladecek",
maintainer="Tomas Sladecek",
author_email="[email protected]",
description='Automated Interpretation of Structural Copy Number Variants',
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/tsladecek/isv_package",
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6, <4',
install_requires=["numpy>=1.22.0,<2", "xgboost>=1.4.0,<2", "pandas>=1.2.0,<2", "shap>=0.39.0",
"sklearn-json>=0.1.0", "numba>=0.53.0", "plotly>5,<6"],
keywords=['python', 'machine learning', 'copy number variation'],
license_files="LICENSE.txt",
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'License :: Free for non-commercial use',
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by 'pip install'. See instead 'python_requires' below.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
)