-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 742 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 742 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
"""Bot for Discord."""
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
setup(
name='AnimeBot_for_Discord',
version='0.0.1.dev20170601', # see PEP-0440
description='A bot for Discord who told information about an anime (in french)',
python_requires='>=3.5',
author='Marc Friedli & Julien Feuillade',
author_email='marc.friedli@he-arc.ch',
url='https://github.com/MarcFriedli/HeArcPythonBot',
license='https://opensource.org/licenses/BSD-3-Clause',
packages=['animebot'],
setup_requires=(
'pytest-runner',
),
tests_require=(
'pytest',
'pytest-aiohttp',
'pytest-asyncio',
'pytest-cov'
)
)