-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (27 loc) · 1.04 KB
/
setup.py
File metadata and controls
36 lines (27 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name='aspio',
version='0.0.1',
description='ASP interface to object-oriented programs',
long_description='This library simplifies integration of Answer Set Programming into Python applications.',
url='https://github.com/hexhex/py-aspio',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
install_requires=[
'pyparsing >= 2.1.4',
],
author='Jakob Rath',
author_email='jakob.rath@student.tuwien.ac.at',
license='MIT',
test_suite='aspio.tests',
# A list of classifiers can be found at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)