-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (64 loc) · 2.22 KB
/
setup.py
File metadata and controls
65 lines (64 loc) · 2.22 KB
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
64
65
from setuptools import find_packages, setup
setup(
name="AlgoTree",
version="2.0.2",
author="Alex Towell",
author_email="lex@metafunctor.com",
description="Immutable-by-default tree manipulation library with functional programming patterns and composable transformations",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
packages=find_packages() + ['bin'],
url='https://github.com/queelius/AlgoTree',
project_urls={
"Documentation": "https://queelius.github.io/AlgoTree/",
"Source Code": "https://github.com/queelius/AlgoTree",
"Issue Tracker": "https://github.com/queelius/AlgoTree/issues",
"Changelog": "https://github.com/queelius/AlgoTree/blob/main/CHANGELOG.md",
},
python_requires=">=3.8",
install_requires=[
'prompt_toolkit>=3.0.0',
],
extras_require={
'dev': [
'sphinx',
'sphinx-rtd-theme',
'sphinxcontrib-napoleon',
'coverage',
'pytest',
'flake8',
],
'analytics': [
'pandas>=1.3.0',
'pyarrow>=6.0.0',
],
'jupyter': [
'ipywidgets>=7.6.0',
'IPython>=7.0.0',
],
},
test_suite="test",
entry_points={
'console_scripts': [
'jt=bin.jt:main',
'algotree=AlgoTree.shell.cli:main',
'algotree-shell=AlgoTree.shell.shell:main',
],
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
keywords="tree data-structure algorithms pattern-matching transformation fluent-api",
)