-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.16 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
import os
from setuptools import setup, find_packages
__version__ = '0.1.5'
__author__ = 'Chie Hayashida'
__author_email__ = '[email protected]'
__classifiers__ = (
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: User Interfaces')
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
readme = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name='easy_notifier',
version=__version__,
author=__author__,
author_email=__author_email__,
url='https://github.com/chie8842/easy_notifier',
description='Notify when your process finished',
long_description=readme,
test_suite='test',
classifiers=__classifiers__,
packages=find_packages(),
install_requires=requires,
license='MIT')