-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 845 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 845 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
25
26
27
from os import path
from setuptools import setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')) as f:
readme = f.read()
setup(
name = 'dircopy',
version = '2.1.3',
description = 'A plugin fs app to copy one or more obj storage directories',
long_description = readme,
author = 'FNNDSC',
author_email = 'dev@babyMRI.org',
url = 'https://github.com/FNNDSC/pl-dircopy',
packages = ['dircopy'],
install_requires = ['chrisapp'],
test_suite = 'nose.collector',
tests_require = ['nose'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.8',
entry_points = {
'console_scripts': [
'dircopy = dircopy.__main__:main'
]
}
)