-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 1.24 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "twc_square",
version = "0.2.25",
author = "Sabbir Rashid",
author_email = "[email protected]",
description = ("The twc_square package contains configuration entries for SQuARE, the SPARQL Query Agent-based Reasoning Engine"),
license = "Apache License 2.0",
keywords = "rdf semantic inference reasoning engine",
url = "http://packages.python.org/twc_square",
packages=find_packages(),
long_description='''The twc_square package contains configuration entries for SQuARE, the SPARQL Query Agent-based Reasoning Engine.''',
include_package_data = False,
install_requires = [],
entry_points = {
'console_scripts': ['twc_square=twc_square:main'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
],
)