-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (59 loc) · 2.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import wsyntree as mainmodule
with open("README.md", "r") as f:
readme = f.read()
setup(
name='WorldSyntaxTree',
version=mainmodule.__version__,
description="WorldSyntaxTree common library",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='utk research',
author='Ben Klein',
author_email='bklein3@vols.utk.edu',
url='https://github.com/utk-se/WorldSyntaxTree',
# license='MIT',
# dependency_links=[
# # 'https://github.com/utk-se/py-tree-sitter/tarball/master#egg=tree_sitter',
# "git+https://github.com/utk-se/py-tree-sitter.git@master#egg=tree_sitter_utk",
# ],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'vendor', 'venv']),
include_package_data=True,
zip_safe=False,
install_requires=[
"tree_sitter@git+https://github.com/utk-se/py-tree-sitter.git@master",
"python-arango",
"coloredlogs",
"pygit2",
"filelock",
"tqdm",
"Pebble",
"tenacity",
"cachetools",
"enlighten==1.9.0",
"psutil",
"bpython",
"orjson>=3.0.0",
"networkx[default]"
],
entry_points={
'console_scripts': [
'wsyntree-collector=wsyntree_collector.__main__:__main__',
'wsyntree-selector=wsyntree_selector.__main__:__main__'
]
},
python_requires='>=3.8'
)