-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (28 loc) · 1014 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
30
31
from pathlib import Path
from setuptools import setup
# load long description
p = Path("README.md")
long_description = p.read_text() if p.exists() else None
setup(
name='pz',
version='1.1.0',
author='Edvard Rejthar',
author_email='[email protected]',
url='https://github.com/CZ-NIC/pz',
license='GNU GPLv3',
description='Ever wished to use the Python syntax to work in Bash?'
' Then pythonize it, piping the contents through your tiny Python script with the `pz` utility!',
long_description=long_description,
long_description_content_type="text/markdown",
scripts=['pz'],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Text Processing',
'Topic :: Utilities'
],
python_requires='>=3.6',
)