-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (48 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import find_packages, setup
import os
import sys
base_dir = os.path.dirname(__file__)
# Use README as long description
with open(os.path.join(base_dir, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='hms_irc',
use_scm_version=True,
packages=find_packages(exclude=['tests', 'tests.*']),
url='https://github.com/haum/hms_irc',
bugtrack_url='https://github.com/haum/hms_irc/issues',
license='MIT',
platforms='any',
author='Romain Porte (MicroJoe)',
author_email='microjoe@microjoe.org',
description='Extensible IRC microservice',
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
setup_requires=[
'setuptools_scm',
'pytest-runner',
],
install_requires=[
'hms_base>=2.0,<3',
'pika==0.10.0',
'coloredlogs',
'irc',
'attrs>17,<18',
],
tests_require=[
'pytest',
'flake8',
],
entry_points={
'console_scripts': [
'hms_irc = hms_irc.main:main',
'hms_irc_debug = hms_irc.debug:main',
]
},
)