Skip to content

Commit

Permalink
added setup.py and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Nov 14, 2023
1 parent 3e659bd commit 6758165
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name="owlapy",
description="Owlapy is loosely based on owlapi, successfully representing the main owl objects in python.",
version="0.1.0",
packages=find_packages(),
install_requires=[
"pandas>=1.5.0",
"rdflib>=6.0.2",
"parsimonious>=0.8.1"],
author='Ontolearn Team',
author_email='[email protected]',
url='https://github.com/dice-group/owlapy',
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Scientific/Engineering"],
python_requires='>=3.8',
long_description=long_description,
long_description_content_type="text/markdown",
)

0 comments on commit 6758165

Please sign in to comment.