-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.14 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.14 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
from setuptools import setup, find_packages
try:
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
except FileNotFoundError:
long_description = (
"This library is used to obtain RDKit molecule objects from amino acid sequences, "
"including non-natural amino acids present in the library."
)
setup(
name="pepfoundry",
version="1.1.1",
packages=find_packages(),
install_requires=[
"pandas>=1.3.5",
"rdkit>=2023.3.2",
"torch>=1.13.1",
"torchvision>=0.14.1",
"openpyxl>=3.1.3",
"scikit-learn>=1.0.2"
],
include_package_data=True,
package_data={
"pepfoundry": ["project/core/amino_acids_library.xlsx"]
},
author="Daniel Garzon Otero",
author_email="vvd9fd@virginia.edu",
description="A module to obtain peptide RDKit molecule objects from amino acid sequences",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BilodeauGroup/PepFoundry",
python_requires='>=3.7.16',
license="AGPL-3.0",
license_files=["LICENSE"],
)