forked from danhper/bigcode-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1007 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
setup(
name="bigcode-embeddings",
version="0.1.2",
description="Tool generate and visualize embeddings from bigcode",
long_description=LONG_DESCRIPTION,
author="Daniel Perez",
author_email="[email protected]",
url="https://github.com/tuvistavie/bigcode-tools/tree/master/bigcode-embeddings",
download_url="https://github.com/tuvistavie/bigcode-tools/archive/master.zip",
include_package_data=True,
zip_safe=True,
packages=find_packages(),
install_requires=["pandas", "scipy", "numpy", "scikit-learn", "matplotlib", "plotly"],
scripts=["bin/bigcode-embeddings"],
extras_require={},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
)