-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (52 loc) · 1.39 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
54
55
56
57
58
59
from setuptools import setup, find_packages
from pathlib import Path
# # Versioning
# def _get_version() -> str:
# """Read FragFeatures/VERSION.txt and return its contents."""
# path = Path("PyCEC").resolve()
# version_file = path / "VERSION.txt"
# return version_file.read_text().strip()
# TODO: Add versioning
# TODO: Transition to pyproject.toml for versioningß
# version = _get_version()
requirements = [
# 'numpy',
# 'MDAnalysis',
# 'tqdm',
# 'matplotlib'
'rdkit',
# 'molparse',
# 'pandas',
'openmm',
'prolif',
]
# TODO: Add long description linked to README.md
setup(
name='FragFeatures',
version=1.0,
author='Ronald Cvek',
author_email='[email protected]',
description=(
'Tool to extract protein-ligand interaction '
'fingerprints from Fragalysis data.'
),
url='https://github.com/roncv/FragFeatures',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
],
python_requires='>=3.10',
# package_data={ # Optional: include data files
# 'your_package_name': ['data/*']
# },
entry_points={ # Optional: define command-line scripts
'console_scripts': [
'fragfeat=FragFeatures.scripts.frag_features:main',
],
},
)