forked from SamuelHill/companionsKQML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.12 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
# -*- coding: utf-8 -*-
# @Author: Samuel Hill
# @Date: 2020-02-13 14:50:39
# @Last Modified by: Samuel Hill
# @Last Modified time: 2021-02-19 10:47:24
from setuptools import setup
setup(name='companionsKQML',
version='1.1.4',
packages=['companionsKQML'],
python_requires='>=3.0',
install_requires=['pykqml>=1.3', 'psutil>=5.6.5',
'python-dateutil>=2.8.1'],
url='http://github.com/SamuelHill/companionsKQML',
author='Samuel J. Hill',
author_email='samuelhill2022@northwestern.edu',
description='Companions agents in Python.',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
project_urls={
'Qualitative Reasoning Group': 'http://www.qrg.northwestern.edu/'
}
)