-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
35 lines (29 loc) · 1.14 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
#!/usr/bin/env python
"""Setup script for py-megahal"""
def main():
from distutils.core import setup
setup(name='megahal',
author='Chris Jones',
author_email='[email protected]',
url='http://gruntle.org/projects/python/megahal/',
description='Python implementation of megahal markov bot',
license='BSD',
version='0.2',
py_modules=['megahal'],
scripts=['scripts/megahal'],
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules'])
return 0
if __name__ == '__main__':
import sys
sys.exit(main())