-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 958 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 setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='types-linq',
version='v1.2.1',
url='https://github.com/cleoold/types-linq',
license='BSD 2-Clause License',
author='cleoold',
description='Standard sequence helper methods with full typing support',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['types_linq', 'types_linq.more'],
package_data={
'': ['*.pyi', 'py.typed'],
},
zip_safe=False,
python_requires='>=3.7',
extras_require={':python_version<"3.8"': ['typing_extensions']},
platforms='any',
classifiers=[
'Topic :: Utilities',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Typing :: Typed',
],
)