-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.56 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
46
from setuptools import find_packages, setup
with open("README.md", encoding="utf8") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="mease_elabftw",
version="0.0.7",
author="Liam Keegan",
author_email="[email protected]",
description="Extracts metadata from eLabFTW experiments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ssciwr/mease-elabftw",
project_urls={
"Documentation": "https://mease-elabftw.readthedocs.io/",
"Issues": "https://github.com/ssciwr/mease-elabftw/issues",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
license="MIT",
packages=find_packages(exclude=["docs", "tests"]),
install_requires=requirements,
entry_points={
"console_scripts": [
"elabftw-list = mease_elabftw.scripts.cli:elabftw_list",
]
},
zip_safe=False,
)