-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.12 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
from setuptools import setup, find_packages
from datasail.version import __version__
with open("README.md", "r") as desc_file:
long_description = desc_file.read()
setup(
name="DataSAIL",
version=__version__,
description="Data Splitting Against Information Leaking",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
author="Roman Joeres",
maintainer="Roman Joeres",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=["datasail"],
include_package_data=True,
# packages=find_packages(),
# include_package_data=False,
install_requires=[],
python_requires=">=3.8, <4.0.0",
keywords="bioinformatics",
)