-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
"""The setup script."""
import pathlib
from setuptools import setup, find_packages
__author__ = "Radek Janoštík, Tomáš Mikula, Tomáš Urbanec, Roman Vyjídáček"
__email__ = "radek.janostik@upol.cz, mail@tomasmikula.cz, tomas.urbanec@upol.cz, r.vyjidacek@gmail.com"
__version__ = "0.1.4"
__license__ = "MIT license"
setup(
name="convertme",
version=__version__,
author=__author__,
author_email=__email__,
description="Simple dataset convertor in Python",
python_requires=">=3.6",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={
"console_scripts": [
"convertme=convertme.cli:main",
],
},
install_requires=["Click>=7.0", "mat4py>=0.4.3", "h5py>=2.10.0", "bitarray>=1.2.1"],
license=__license__,
long_description=pathlib.Path("README.rst").read_text()
+ "\n\n"
+ pathlib.Path("HISTORY.rst").read_text(),
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="convertme",
packages=find_packages(include=["convertme", "convertme.*"]),
extras_require={"test": ["pytest", "pytest-cov"], "docs": ["sphinx"]},
url="https://github.com/mikulatomas/convertme",
zip_safe=False,
)