-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 911 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
32
33
34
35
36
"""Installer for the asyncio-getting-started package."""
from setuptools import find_packages
from setuptools import setup
setup(
name='asyncio-getting-started',
version='0.1',
description='.',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'License :: Other/Proprietary License',
],
author='Gasper Karantan Vozel',
author_email='karantan@gmail.com',
url='http://github.com/karantan/asyncio-getting-started',
keywords='asyncio',
license='MIT License',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
],
extras_require={
'develop': [
'asynctest',
'pytest',
'responses',
'testfixtures',
],
},
)