-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.5 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
import setuptools
import pyxargs
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="pyxargs",
version=pyxargs.__version__,
python_requires=">=3.8",
description="Command line Python scripting with an xargs-like interface and AWK-like capabilities for data processing and task automation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/elesiuta/pyxargs",
py_modules=["pyxargs"],
entry_points={
"console_scripts": [
"pyxargs = pyxargs:main",
"pyxr = pyxargs:main"
]
},
extra_requires={
"all": ["argcomplete", "duckdb", "pandas"],
"full": ["argcomplete", "duckdb", "pandas"],
"argcomplete": ["argcomplete"],
"duckdb": ["duckdb"],
"pandas": ["pandas"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
],
test_suite = "tests",
)