mirror of
https://github.com/CZ-NIC/pz.git
synced 2022-02-13 01:03:07 +03:00
26 lines
639 B
Python
26 lines
639 B
Python
from pathlib import Path
|
|
|
|
from setuptools import setup
|
|
|
|
# load long description
|
|
p = Path("README.md")
|
|
if p.exists():
|
|
long_description = p.read_text()
|
|
|
|
setup(
|
|
name='pyed',
|
|
version='0.8',
|
|
author='Edvard Rejthar',
|
|
author_email='edvard.rejthar@nic.cz',
|
|
url='https://github.com/CZ-NIC/pyed',
|
|
license='GNU GPLv3',
|
|
description='Launch your tiny Python script on a piped in contents and pipe it out',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
scripts=['pyed'],
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3'
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|