-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (24 loc) · 1.02 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
import pathlib
import setuptools
from setuptools import setup
# This directory
path = pathlib.Path(__file__).parent
readme_content = (path / "README.md").read_text()
setup(name="rdfframes",
version="0.9.3",
description="Exposes RDF datasets from sparql endpoints for machine learning models in convenient formats like "
"pandas dataframe",
long_description=readme_content,
long_description_content_type="text/markdown",
url="https://github.com/qcri/RDFframes",
author="Aisha Mohamed, Ghadeer Abuoda, Zoi Kaoudi, Abdurrahman Ghanem, Ashraf Aboulnaga",
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6"],
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={},
)