-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.24 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.24 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
from setuptools import setup, find_packages
VERSION = '1.0.2'
NAME = 'pyspel'
DESCRIPTION = 'Python Specification Language (Pyspel)'
LONG_DESCRIPTION = 'Pyspel is a python-based specification language that combines python programs with Answer Set Programming'
setup(
name=NAME,
packages=find_packages(),
version=VERSION,
license='Apache 2.0',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Carmine Dodaro',
author_email='carmine.dodaro@unical.it',
url='https://github.com/dodaro/pyspel',
download_url='https://github.com/dodaro/pyspel/archive/refs/tags/v1.0.2.tar.gz',
keywords=['answer set programming', 'specification language', 'combinatorial problems'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)