-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 945 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 945 Bytes
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
from setuptools import find_packages
def read_requirements():
# Read requirements from file
with open("requirements.txt") as f:
return f.read().splitlines()
setuptools.setup(
name="protac_splitter",
version="0.0.1",
author="Stefano Ribes and Anders Källberg",
url="https://github.com/ribesstefano/PROTAC-Splitter",
author_email="ribes.stefano@gmail.com",
description="A package to split PROTAC SMILES into their substructures.",
long_description=open("README.md").read(),
packages=find_packages(),
install_requires=read_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
# package_data={"": ["data/*.h5", "data/*.pkl", "data/*.csv", "models/*.ckpt"]},
)