forked from asyncdef/aitertools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 687 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 687 Bytes
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
"""Setuptools configuration for aitertools."""
from setuptools import setup
from setuptools import find_packages
with open('README.rst', 'r') as readmefile:
README = readmefile.read()
setup(
name='aitertools',
version='0.1.0',
url='https://github.com/asyncdef/aitertools',
description='Async versions of the itertools features.',
author="Kevin Conway",
author_email="kevinjacobconway@gmail.com",
long_description=README,
license='Apache 2.0',
packages=find_packages(exclude=['tests', 'build', 'dist', 'docs']),
install_requires=[
],
entry_points={
'console_scripts': [
],
},
include_package_data=True,
)