-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (56 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
requirements = [
"nbconvert>=1.3.5",
"nbformat>=3.0.9",
"jupyter",
"pyyaml",
"typing_extensions",
"python-frontmatter",
"deepdiff",
]
notebook_test_requirements = [
"RelevanceAI[notebook]",
"vectorhub[sentence-transformers]>=1.8.3",
"matplotlib", ## Needed for Vectorhub Clip2Vec in non-Colab env
"seaborn", ## Needed for running ClusterVizOps in non-Colab env
]
dev_requirements = [
"ipykernel",
"autopep8",
"pylint",
"flake8",
"pre-commit",
]
setuptools.setup(
name="rdme-sync",
version="0.0.1",
description="RelevanceAI ReadMe Sync",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="[email protected]",
install_requires=requirements,
extras_require={
"tests": notebook_test_requirements,
"dev": dev_requirements + notebook_test_requirements,
},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
],
)