33 lines
731 B
Python
33 lines
731 B
Python
from setuptools import setup
|
|
|
|
NAME = "etrack"
|
|
VERSION = 0.5
|
|
AUTHOR = "Jan Grewe"
|
|
CONTACT = "jan.grewe@g-node.org"
|
|
CLASSIFIERS = "science"
|
|
DESCRIPTION = "helpers for handling deep lab cut tracking results"
|
|
|
|
README = "README.md"
|
|
with open(README) as f:
|
|
description_text = f.read()
|
|
|
|
packages = [
|
|
"etrack",
|
|
]
|
|
|
|
install_req = ["h5py", "pandas", "matplotlib", "numpy", "opencv-python"]
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=VERSION,
|
|
description=DESCRIPTION,
|
|
author=AUTHOR,
|
|
author_email=CONTACT,
|
|
packages=packages,
|
|
install_requires=install_req,
|
|
include_package_data=True,
|
|
long_description=description_text,
|
|
long_description_content_type="text/markdown",
|
|
classifiers=CLASSIFIERS,
|
|
license="BSD"
|
|
) |