-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 968 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
29
from setuptools import find_packages
from setuptools import setup
import versioneer
setup(
name="cat-file",
url="https://github.com/schreiberben/cat-file.git",
description="A CLI tool to visualize data files",
author="Ben Schreiber",
install_requires=["pandas<2.0.0", "tabulate", "pyarrow", "xlrd", "openpyxl"],
extras_require={"tests": ["pytest"]},
entry_points={"console_scripts": ["cat-file = cat_file.main:main"]},
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires=">=3.8.0",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)