-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 896 Bytes
/
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
from pathlib import Path
from setuptools import find_packages, setup
base_path = Path(__file__).parent
long_description = (base_path / "README.md").read_text()
setup(
name="brown_clustering",
packages=find_packages(include=("brown_clustering",)),
version="0.1.6",
description="Fast Brown Clustering",
long_description=long_description,
long_description_content_type="text/markdown",
author="bfuchs",
author_email="[email protected]",
license="MIT",
python_requires=">=3.7",
url="https://github.com/helpmefindaname/BrownClustering",
install_requires=[
"numpy",
"numba",
"tqdm",
],
extras_require={
"dev": [
"pytest",
"pytest-mypy",
"pytest-profiling",
"pytest-flake8",
"flake8<4.0.0",
"flake8-isort",
]
},
)