forked from jic-dtool/dtoolcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 664 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 664 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
from setuptools import setup
version = "3.18.2"
url = "https://github.com/jic-dtool/dtoolcore"
readme = open('README.rst').read()
setup(
name="dtoolcore",
packages=["dtoolcore"],
version=version,
description="Core API for managing (scientific) data",
long_description=readme,
include_package_data=True,
author="Tjelvar Olsson",
author_email="tjelvar.olsson@jic.ac.uk",
url=url,
download_url="{}/tarball/{}".format(url, version),
install_requires=[],
entry_points={
"dtool.storage_brokers": [
"DiskStorageBroker=dtoolcore.storagebroker:DiskStorageBroker",
],
},
license="MIT"
)