-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (49 loc) · 1.61 KB
/
setup.py
File metadata and controls
executable file
·56 lines (49 loc) · 1.61 KB
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
51
52
53
54
55
56
"""
setup.py
Setup for installing the package.
"""
from pathlib import Path
from setuptools import find_packages, setup
about = {}
exec(Path("mdtable/_version.py").read_text(), about)
VERSION = about["__version__"]
AUTHOR = about["__author__"]
EMAIL = about["__email__"]
BASE_DIR = Path(__file__).resolve().parent
README = BASE_DIR.joinpath("README.md")
setup(
name="mdtable",
version=VERSION,
description="An easy way to creating tables from csv files. (mdtable)",
long_description=README.read_text(),
long_description_content_type="text/markdown",
url="https://github.com/clamytoe/mdtable",
author=AUTHOR,
author_email=EMAIL,
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
# How mature is this project? Common values are
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 7 - Inactive
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13.3",
],
keywords="python utility",
packages=find_packages(),
install_requires=[],
python_requires=">=3.13.3",
license="MIT",
entry_points={"console_scripts": ["mdtable=mdtable.cli:main"]},
project_urls={
"Bug Reports": "https://github.com/clamytoe/mdtable/issues",
"Source": "https://github.com/clamytoe/mdtable/",
},
)