-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.4 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
#!/usr/bin/env python
# ------------------------------------------------------------------------------
# Copyright (C) The BiometricBlender contributors
#
# SPDX-License-Identifier: MIT
# ------------------------------------------------------------------------------
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="biometricblender",
version="1.1.1",
author="Marcell Stippinger",
author_email="[email protected]",
description=("BiometricBlender: Ultra-high dimensional, multi-class "
"synthetic data generator to imitate biometric feature "
"space"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cursorinsight/biometricblender",
project_urls={
"Bug Tracker": "https://github.com/cursorinsight/biometricblender/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7.1",
install_requires=['h5py>=2.10',
'numpy>=1.18',
'scipy>=1.6',
'scikit-learn>=0.24',
'pytest>=7.1']
)