-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 809 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""setup.py file for packaging"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sciflow",
version="0.2",
author="Dylan Johnson, Caleb Weber, Stuart Chalk",
author_email="n01448636@unf.edu, cweb1182@gmail.com, schalk@unf.edu",
description="An interface for management and storage of SciData "
"JSON-LD files in a graph database",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ChalkLab/sciflow",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.12',
)