-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (36 loc) · 1.01 KB
/
setup.cfg
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
[metadata]
name = virtual-dataset
version = 1.0.1
url = https://github.com/nhamilakis/virtual-dataset
license = MIT
license_file = LICENCE.txt
author = Nicolas Hamilakis
maintainer = Nicolas Hamilakis
maintainer_email = [email protected]
description = A small utility that allows to mount virtually a list of files as a folder.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = todo
platform = any
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
project_urls =
Github = https://github.com/nhamilakis/virtual-dataset
Pip = https://pypi.org/project/virtual-dataset
[options]
packages = find:
package_dir =
=.
[options.packages.find]
where = .
include = vdata*
exclude = tests
[options.entry_points]
console_scripts =
vmount=vdataset._cmd:main
[bdist_wheel]
universal = true