-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (24 loc) · 1.01 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
# The Tangle: An entangled collection of English text for Jazz
# Jazz (c) 2021-2025 kaalam.ai (The Authors of Jazz)
# Code is licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0
# Data is open source (see LICENSE_* files in kaalam/tng-data-* repositories for details.)
from distutils.core import setup
from thetangle import __version__
setup(
name = 'thetangle',
packages = ['thetangle'],
version = __version__,
license = 'MIT',
description = 'A minimalistic utility to explore The Tangle',
author = 'kaalam',
author_email = 'kaalam@kaalam.ai',
url = 'https://github.com/kaalam/thetangle',
download_url = 'https://github.com/kaalam/thetangle/dist/thetangle-%s.tar.gz' % __version__,
keywords = ['utilities', 'nlp', 'datasets'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3']
)