forked from bgyori/pykqml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 695 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(name='pykqml',
version='1.0',
packages=['kqml'],
keywords=['kqml', 'agent', 'nlp', 'communication', 'dialogue'],
url='http://github.com/bgyori/pykqml',
author='Benjamin M. Gyori',
author_email='benjamin_gyori@hms.harvard.edu',
description='KQML messaging classes in Python.',
long_description=open('README.rst', 'r').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
)