-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
45 lines (43 loc) · 1.37 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="opfython",
version="1.0.14",
description="Python-Inspired Optimum-Path Forest Classifier",
long_description=long_description,
long_description_content_type="text/markdown",
author="Gustavo Rosa",
author_email="[email protected]",
url="https://github.com/gugarosa/opfython",
license="Apache 2.0",
install_requires=[
"coverage>=5.5",
"numba>=0.53.0",
"numpy>=1.19.5",
"pre-commit>=2.17.0",
"pylint>=2.7.2",
"pytest>=6.2.2",
],
extras_require={
"tests": [
"coverage",
"pytest",
"pytest-pep8",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
)