-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.26 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
import os
from setuptools import setup, find_packages
setup(
name="Pyterator",
description="Pyterator helps you write fluent functional programming "
"idioms in Python via chaining",
version="0.0.1a2",
url="https://github.com/remykarem/pyterator",
author="Raimi bin Karim",
author_email="[email protected]",
maintainer="Raimi bin Karim",
maintainer_email="[email protected]",
license="MIT",
keywords="functional pipeline data collection chain",
packages=find_packages(exclude=["docs", "tests"]),
long_description=(open("README.md").read() if os.path.exists("README.md")
else ""),
install_requires=["more-itertools>=8.11.0"],
python_requires=">=3.5",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"])