-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (41 loc) · 1.59 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright © 2021 Alexander L. Hayes
# MIT License
from setuptools import setup
from setuptools import find_packages
from codecs import open
from os import path
# Get __version__ from _version.py
with open(path.join("relational_datasets", "_version.py")) as _fh:
exec(_fh.read())
_here = path.abspath(path.dirname(__file__))
with open(path.join(_here, "README.md"), "r", encoding="utf-8") as _fh:
LONG_DESCRIPTION = _fh.read()
setup(
name="relational-datasets",
packages=find_packages(exclude=["tests"]),
package_dir={"relational_datasets": "relational_datasets"},
author="Alexander L. Hayes",
author_email="[email protected]",
description="A small library for loading and downloading relational datasets",
version=__version__,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://srlearn.github.io/relational-datasets/",
download_url="https://pypi.org/project/relational-datasets/",
project_urls={
"Bug Tracker": "https://github.com/srlearn/relational-datasets/issues",
"Documentation": "https://srlearn.github.io/relational-datasets/",
"Source Code": "https://github.com/srlearn/relational-datasets/",
},
license="Apache License, Version 2.0",
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
extra_requires={
"tests": ["coverage", "pytest"],
"convert": ["numpy>=1.20.0"],
},
)