-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 827 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="pyiter",
version="0.13.6",
keywords=["linq", "iterator", "typing", "lazy evaluation", "type inference"],
description="PyIter is a Python package for iterative operations inspired by the Kotlin、CSharp(linq)、TypeSrcipt "
"and Rust . Enables strong typing and type inference for iterative operations.",
long_description=long_description,
long_description_content_type="text/markdown",
author="YISH",
author_email="[email protected]",
url="https://github.com/mokeyish/pyiter",
package_dir={"": "src"},
packages=find_packages(where="src"),
license="MIT",
python_requires=">=3.8",
install_requires=["typing_extensions"],
)