-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (29 loc) · 883 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
from setuptools import setup
__version__ = "1.0.2"
test_deps = [
'pytest'
]
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name='atoot',
version=__version__,
description='Asynchronous Python library for the Mastodon API',
long_description=long_description,
packages=['atoot'],
install_requires=[
'aiohttp>=3.6.2',
],
tests_require=test_deps,
url='https://github.com/popura-network/atoot',
author='zhoreeq',
author_email='[email protected]',
license='MIT',
keywords='mastodon api asyncio',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
)