-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.16 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
#! /usr/bin/env python3
#
# This file is part of RepeatFS
#
# SPDX-FileCopyrightText: 2020 Anthony Westbrook, University of New Hampshire <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-only WITH LicenseRef-repeatfs-graphviz-linking-source-exception
#
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='RepeatFS',
version='0.14.1',
author='Anthony Westbrook',
author_email='[email protected]',
packages=setuptools.find_packages(),
scripts=['scripts/repeatfs'],
include_package_data=True,
url='http://github.com/ToniWestbrook/repeatfs',
license='LICENSE',
description='File system providing reproducibility through provenance and automation',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
install_requires=[
"fusepy >= 3.0.1",
"python-daemon >= 2.2.0",
"pygraphviz >= 1.3.1",
],
)