forked from JulienPalard/Pipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 994 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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='pipe',
py_modules=['pipe'],
version='1.4.2',
description='Module enablig a sh like infix syntax (using pipes)',
author='Julien Palard',
author_email='[email protected]',
url='https://github.com/JulienPalard/Pipe',
download_url='https://github.com/JulienPalard/Pipe/tarball/master',
long_description=readme,
long_description_content_type='text/markdown; charset=UTF-8',
license='MIT license',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)