-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.08 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
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals
from setuptools import find_packages, setup
setup(
name='mosbot',
version='0.0.1',
description='Mos bot',
long_description=open('README.rst').read(),
url='https://github.com/txomon/mosbot',
author='Javier Domingo Cansino',
author_email='[email protected]',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
python_requires='>=3.6',
include_package_data=True,
zip_safe=False,
keywords=['dubtrack', 'bot', 'mos', 'master-of-soundtrack'],
entry_points={
'console_scripts': [
'bot=mosbot.__main__:main'
]
},
install_requires=[
'abot==0.0.1a1.post0.dev23',
'aiopg',
'alembic',
'asyncio-extras',
'click',
'sqlalchemy',
]
)