This repository was archived by the owner on Aug 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
42 lines (40 loc) · 1.71 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
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 5, 0):
typing = ["typing"]
else:
typing = []
setup(
name="snippet_ranger",
description="Part of source{d}'s stack for machine learning on source code. Provides API and "
"tools to train and use models for ecosystem exploratory snippet mining. "
"It can help you to learn new libraries faster and speed up coding speed. "
"The module allows you to train and use hierarchical topic model on top of "
"babelfish UAST for any library you want.",
version="0.0.1-alpha",
license="Apache 2.0",
author="source{d}",
author_email="[email protected]",
url="https://github.com/src-d/snippet-ranger",
download_url="https://github.com/src-d/snippet-ranger",
packages=find_packages(exclude=("snippet_ranger.tests",)),
keywords=["machine learning on source code", "github", "topic modeling",
"hierarchical topic modeling", "exploratory code search"],
entry_points={
"console_scripts": ["snippet_ranger=snippet_ranger.__main__:main"],
},
install_requires=["pandas>=0.20",
"ast2vec>=0.2.6-alpha"] + typing,
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"
]
)