-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.55 KB
/
setup.py
File metadata and controls
53 lines (46 loc) · 1.55 KB
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
import glob
from setuptools import setup, find_packages
from pybind11.setup_helpers import Pybind11Extension
ext_modules = [
Pybind11Extension(
"tmtools._bindings",
sorted(glob.glob("src/*.cpp")) + ["src/extern/TMalign-modified.cpp"],
cxx_std=14,
),
]
def _read_long_description():
with open("README.md", encoding="utf-8") as fp:
return fp.read()
setup(
name="tmtools",
version="0.3.0",
author="Joris Vankerschaver",
author_email="joris.vankerschaver@gmail.com",
url="https://github.com/jvkersch/tmtools",
long_description=_read_long_description(),
long_description_content_type='text/markdown',
description="Python bindings around the TM-align code for structural alignment of proteins", # noqa
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
],
license="GPLv3",
platforms=["Linux", "Mac OS-X", "Unix", "Windows"],
ext_modules=ext_modules,
packages=find_packages(),
package_data={
"tmtools": ["data/*"],
},
include_package_data=True,
install_requires=[
"numpy",
],
)