-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.21 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
# -*- coding: utf-8 -*-
from setuptools import setup
longdesc = """
This is a library for creating Daemons that can communicate with each other using ZeroMQ
and save persistant data on disc.
"""
setup(
name = 'malacoda',
packages = ['malacoda'],
version = '0.1',
description = 'Daemon framework with communication and persistant storage capabilities',
author='Gustav Arngården',
author_email = '[email protected]',
url = 'https://github.com/arngarden/malacoda/',
license = 'Apache Software License',
classifiers = ['Programming Language :: Python',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration'
],
long_description = longdesc,
install_requires = ['psutil']
)