-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.37 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
36
37
38
39
40
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
# Kinetic Diagram Analysis
#
# Released under the GNU Public Licence, v3 or any higher version
import sys
from setuptools import setup, find_packages
import versioneer
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with open("README.md", "r") as handle:
long_description = handle.read()
setup(
# Self-descriptive entries which should always be present
name="kda",
author="Nikolaus Awtrey",
author_email="[email protected]",
url="https://github.com/Becksteinlab/kda/",
description="Kinetic Diagram Analysis tools",
long_description=long_description,
long_description_content_type="text/markdown",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="LGPLv3",
keywords="science kinetics chemistry physics",
project_urls={
"Source": "https://github.com/Becksteinlab/kda/",
"Issue Tracker": "https://github.com/Becksteinlab/kda/issues",
},
packages=find_packages(),
install_requires=["numpy", "networkx", "scipy", "sympy", "matplotlib",],
tests_require=["pytest", "pytest-cov", "pytest-xdist", "hypothesis",],
include_package_data=True,
setup_requires=[] + pytest_runner,
)