-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 943 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name="ontosample",
description="Ontosample is a package that offers different sampling techniques for OWL ontologies.",
version="0.2.6",
packages=find_packages(),
install_requires=[
"matplotlib>=3.3.4",
"owlready2==0.40",
"torch>=1.7.1",
"pandas>=1.5.0",
"sortedcontainers>=2.4.0",
"owlapy==1.3.3",
"requests>=2.31.0",
"deap>=1.3.1"],
author='Alkid Baci',
author_email='[email protected]',
url='https://github.com/alkidbaci/OntoSample',
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering"],
python_requires='>=3.10.13',
long_description=long_description,
long_description_content_type="text/markdown",
)