-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 990 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
from setuptools import setup
if __name__ == "__main__":
setup(
name="libRDChEBI",
version="0.2.4",
author="Eloy Félix",
author_email="[email protected]",
description="RDKit library to deal with ChEBI's chemistry",
url="https://github.com/chembl/libRDChEBI",
license="MIT",
packages=["libRDChEBI"],
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
install_requires=["chembl_structure_pipeline~=1.2.0", "rdkit>=2023.09.4"],
tests_require=["pytest"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
zip_safe=True,
)