-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (43 loc) · 2.08 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
SCRIPTDIR = path.abspath(path.dirname(__file__))
with open(path.join(SCRIPTDIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name = "csvmagic",
description = "CSV Utilities",
version = "2.3.0",
license = "Apache 2.0",
author = "Mark Kim",
author_email = "[email protected]",
url = "https://github.com/markuskimius/csvmagic",
keywords = [ "csv", "text" ],
long_description = long_description,
long_description_content_type = "text/markdown",
scripts = [
"bin/csvalign",
"bin/csvcsv",
"bin/csvcut",
"bin/csvgrep",
"bin/csvread",
"bin/csvsql",
],
data_files = [
("man/man1", [
"man/man1/csvalign.1",
"man/man1/csvcsv.1",
"man/man1/csvcut.1",
"man/man1/csvgrep.1",
"man/man1/csvread.1",
"man/man1/csvsql.1",
])
],
packages = find_packages("lib"),
package_dir = { "": "lib" },
install_requires = [
"getopts",
"wcwidth",
"importlib_resources",
],
)