forked from melloddy/MELLODDY-TUNER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 1.01 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 os.path import realpath, dirname, join
from setuptools import setup, find_packages
import melloddy_tuner
VERSION = melloddy_tuner.utils.version.__version__
PROJECT_ROOT = dirname(realpath(__file__))
setup(
name="melloddy_tuner",
version=VERSION,
author="Lukas Friedrich",
author_email="[email protected]",
description="melloddy_tuner",
url="https://github.com/melloddy/MELLODDY-TUNER",
packages=find_packages(),
package_data={
"": ["LICENSE.txt", "README.md", "requirements.txt", "data/reference_set.csv"]
},
include_package_data=True,
entry_points={"console_scripts": ["tunercli = melloddy_tuner.tunercli:main"]},
license="MIT License",
long_description="""
Processing and standardization of structure and bioactivity data for federated machine learning models in drug discovery.
MELLODDY-PROJECT
=============
https://www.melloddy.eu
This tool is hosted at https://github.com/melloddy/MELLODDY-TUNER
""",
)