-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (48 loc) · 1.56 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
#!/usr/bin/env python3
"""Set up the pySysBot."""
import os
import sys
from setuptools import setup
from pysysbot.constants import VERSION as __version__
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as desc:
long_description = desc.read()
if sys.argv[-1] == 'publish':
os.system('python3 setup.py sdist upload')
sys.exit()
setup(
name='pysysbot',
version=__version__,
description="Python based system jabber bot",
long_description=long_description,
author="Fabian Affolter",
author_email='[email protected]',
maintainer="Fabian Affolter",
maintainer_email="[email protected]",
url='http://affolter-engineering.ch/pysysbot/',
license='BSD',
platforms='Linux',
packages=['pysysbot'],
entry_points={
'console_scripts': ['pysysbot = pysysbot.pysysbot:main']
},
include_package_data=True,
install_requires=[
'psutil',
'slixmpp',
],
keywords=['Jabber', 'XMPP', 'System', 'python'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System',
'Topic :: System :: Monitoring',
],
)