-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
35 lines (32 loc) · 1.31 KB
/
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
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
setup(
name="zairachem",
version="0.2.0",
author="Miquel Duran-Frigola",
author_email="[email protected]",
url="https://github.com/ersilia-os/zaira-chem",
description="Automated QSAR modeling for chemistry",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.7",
install_requires=install_requires,
packages=find_packages(exclude=("utilities")),
entry_points={"console_scripts": ["zairachem=zairachem.cli:cli"]},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="qsar machine-learning chemistry computer-aided-drug-design",
project_urls={"Source Code": "https://github.com/ersilia-os/zaira-chem"},
include_package_data=True,
)