-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.27 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
41
42
43
44
45
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
with open(os.path.join(HERE, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="experimental_protocol_fetcher",
author="Blue Brain Project, EPFL",
use_scm_version={
"relative_to": __file__,
"write_to": "experimental_protocol_fetcher/version.py",
"write_to_template": "__version__ = '{version}'\n",
},
description="Tools for retrieving experimental protocols used in generating data.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="data",
packages=find_packages(),
python_requires=">=3.7,<3.10",
include_package_data=True,
setup_requires=[
"setuptools_scm",
],
install_requires=[
"nexusforge",
"requests"
],
extras_require={
"dev": [
"tox==4.13.0"
]
},
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
]
)