-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (25 loc) · 929 Bytes
/
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="progres",
version="0.2.7",
author="Joe G Greener",
author_email="[email protected]",
description="Fast protein structure searching using structure graph embeddings",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greener-group/progres",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
keywords="protein structure search graph embedding",
scripts=["bin/progres"],
install_requires=["biopython", "mmtf-python", "einops", "pydantic"],
include_package_data=True,
)