-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.01 KB
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
from setuptools import setup
import notifyme
setup(
name='notifyme',
version='0.1',
description=notifyme.__doc__.strip(),
url='https://github.com/djbelyak/NotifyMeBot',
author='Ivan Belyavtsev',
author_email='djbelyak@gmail.com',
license='MIT',
packages=['notifyme'],
entry_points={
'console_scripts': ['notifyme = notifyme.__main__:main']
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Topic :: Communications :: Chat',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
'Topic :: Software Development',
'Topic :: System :: Networking',
'Topic :: Terminals',
'Topic :: Text Processing',
'Topic :: Utilities'
]
)