-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
40 lines (38 loc) · 1.57 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
import os.path
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="vecino",
description="Part of source{d}'s stack for machine learning on source "
"code. Provides API and tools to find similar Git repositories"
"based on source code identifiers.",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.2.2",
license="Apache Software License",
author="source{d}",
author_email="[email protected]",
url="https://github.com/src-d/vecino",
download_url="https://github.com/src-d/vecino",
packages=find_packages(exclude=("vecino.tests",)),
entry_points={
"console_scripts": ["vecino=vecino.__main__:main"],
},
keywords=["machine learning on source code", "word2vec", "id2vec",
"github", "swivel", "nbow", "bblfsh", "babelfish", "ast2vec"],
install_requires=["sourced-ml>=0.6.1,<0.7",
"wmd>=1.2.11"],
package_data={"": ["LICENSE", "README.md"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries"
]
)