-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
48 lines (43 loc) · 1.33 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
47
48
#!/usr/bin/env python
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(here, "__version__.py")) as f:
exec(f.read(), version)
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="spec2vec_gnps_analysis",
version=version["__version__"],
description="Additional functions and for matchms and Spec2Vec.",
long_description=readme,
author="Netherlands eScience Center",
author_email="",
url="https://github.com/iomega/ms2query",
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
test_suite="tests",
python_requires='>=3.7',
install_requires=[
"matchms>=0.6.2",
"numpy",
"pandas",
"spec2vec",
"networkx",
"gensim",
],
extras_require={"dev": ["bump2version",
"isort>=4.2.5,<5",
"prospector[with_pyroma]",
"pytest",
"pytest-cov",
"sphinx>=3.0.0,!=3.2.0,<4.0.0",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc",
"yapf",],
}
)