-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 1.05 KB
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
from distutils.core import setup
V = '0.2'
setup(
name = 'join-iterables',
packages = ['join_iterables'],
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
version = V,
license='MIT',
description='Joins iterables in a streaming fashion while respects repetitions',
url = 'https://github.com/andyil/join-iterables',
download_url = f'https://github.com/andyil/join-iterables/archive/{V}.tar.gz',
keywords = ['python', 'data', 'iterable', 'iterables', 'itertools', 'more-itertools', 'join'],
install_requires=['more-itertools'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)