-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
39 lines (37 loc) · 1.48 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
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="tmsc",
description="Part of source{d}'s stack for machine learning on source "
"code. Provides API and tools to detect topics in Git "
"repositories.",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1.6-alpha",
license="Apache Software License",
author="source{d}",
author_email="[email protected]",
url="https://github.com/src-d/tmsc",
download_url="https://github.com/src-d/tmsc",
packages=find_packages(exclude=("tmsc.tests",)),
entry_points={
"console_scripts": ["tmsc=tmsc.__main__:main"],
},
keywords=["machine learning on source code", "topic modeling",
"github", "bblfsh", "babelfish", "ast2vec"],
install_requires=["ast2vec>=0.3.8-alpha"],
package_data={"": ["LICENSE.md", "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"
]
)