forked from Martiusweb/asynctest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.05 KB
/
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
# coding: utf-8
"""
asynctest setup script.
Currently, only basic distribution features are required, hence distutils is
sufficient, and we won't use setuptools.
"""
from setuptools import setup
args = {
"name": "asynctest",
"version": "0.10.0",
"description": "Enhance the standard unittest package with features for "
"testing asyncio libraries",
"author": "Martin Richard",
"author_email": "[email protected]",
"url": "https://github.com/Martiusweb/asynctest/",
"license": "Apache 2",
"packages": ["asynctest"],
"classifiers": [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
"keywords": 'unittest test testing asyncio tulip selectors async mock',
}
if __name__ == "__main__":
setup(**args)