forked from liiight/notifiers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.22 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
import io
from distutils.core import setup
from setuptools import find_packages
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
def load_requirements(filename):
with io.open(filename, encoding='utf-8') as reqfile:
return [line.strip() for line in reqfile if not line.startswith('#')]
setup(
name='notifiers',
version='0.4.3',
packages=find_packages(exclude=['notifiers.tests']),
url='https://github.com/liiight/notifiers',
license='MIT',
author='Or Carmi',
author_email='[email protected]',
description='Easily send notifications everywhere',
long_description=long_description,
include_package_data=True,
install_requires=load_requirements('requirements.txt'),
tests_require=['pytest'],
extras_require={
'dev': load_requirements('dev-requirements.txt')
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
entry_points="""
[console_scripts]
notifiers=notifiers_cli.cli:entry_point
"""
)