-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (24 loc) · 828 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
28
import sys
from setuptools import find_packages, setup
import versioneer
# from https://github.com/pytest-dev/pytest-runner#conditional-requirement
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
setup(
name="ael",
author="Rocco Meli",
author_email="[email protected]",
description="Learning Protein-Ligand Properties from Atomic Environment Vectors",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="BSD-3-Clause",
packages=find_packages(),
include_package_data=True,
setup_requires=[] + pytest_runner,
# install_requires=[],
# platforms=['Linux',
# 'Mac OS-X',
# 'Unix',
# 'Windows'],
python_requires=">=3.6",
)