forked from vxgmichel/aioconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (34 loc) · 1.23 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
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import sys
from setuptools import setup
TESTING = any(x in sys.argv for x in ['test', 'pytest'])
README = open("README.rst").read()
CLASSIFIERS = """\
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
""".splitlines()
setup(
name="aioconsole",
version="0.1.15.dev0",
packages=["aioconsole"],
entry_points={'console_scripts': ['apython = aioconsole:run_apython']},
setup_requires=['pytest-runner' if TESTING else ''],
tests_require=['pytest;python_version>"3.4"',
'pytest-asyncio>=0.8;python_version>"3.4"',
'pytest<4;python_version=="3.4"',
'pytest-asyncio<0.6;python_version=="3.4"',
'pytest-cov',
'pytest-repeat'],
license="GPLv3",
classifiers=CLASSIFIERS,
description="Asynchronous console and interfaces for asyncio",
long_description=README,
author="Vincent Michel",
author_email="vxgmichel@gmail.com",
url='https://github.com/vxgmichel/aioconsole',
download_url='http://pypi.python.org/pypi/aioconsole',
)