This repository has been archived by the owner on Oct 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
63 lines (53 loc) · 1.59 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
#!/bin/env python3
# -*- coding: utf-8 -*-
"""setuptools-powered setup module."""
import codecs
import os
from setuptools import setup, find_packages
PARENT_DIR = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(PARENT_DIR, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='cachcord',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Cachet to Discord integration bot',
long_description=LONG_DESCRIPTION,
license='BSD 3-Clause License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='cachet discord integration',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'requests>=2.14,<3',
'arrow==0.10',
],
extras_require={
'dev': [
'ipython>=6,<7',
],
'test': [
'pytest>=3.0,<4',
'coverage>=4.3,<5',
'pytest-cov>=2.4,<3',
'pep8>=1.7,<2',
'pytest-pep8>=1.0,<2',
'pylint>=1.6,<2',
'pytest-pylint>=0.7',
'pytest-mock>=1.5,<2',
],
},
entry_points={
'console_scripts': [
'cachcord=cachcord:entry_point',
],
},
)
# vim: set tabstop=4 shiftwidth=4 expandtab autoindent :