forked from saulpw/readysetdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 879 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
30
31
32
# SPDX-License-Identifier:
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
def requirements():
with open("requirements.txt") as f:
return f.read().split("\n")
setup(
name="readysetdata",
version="",
description="A collection of tools to convert select datasets into ready-to-use formats.",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
],
keywords="datasets readysetdata",
author="Saul Pwanson",
url="https://github.com/saulpw/readysetdata",
python_requires=">=3.8",
py_modules=["readysetdata"],
packages=["readysetdata"],
install_requires=requirements(),
)