-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (33 loc) · 1.03 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
#!/usr/bin/env python3
# encoding: utf-8
import re
import setuptools
with open('aioec/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
with open('README.rst') as f:
readme = f.read()
setuptools.setup(
name='aioec',
author='io mintz',
author_email='io@mintz.cc',
url='https://github.com/EmoteCollector/aioec',
version=version,
license='MIT',
packages=['aioec'],
install_requires=['aiohttp<3.8.0,>=3.6.0'],
python_requires='>=3.5.3',
description='async client library for the Emote Collector API',
long_description=readme,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
)