-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (37 loc) · 1.03 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="token2index", # Replace with your own username
version="1.0.2",
author="Dennis Ulmer",
description="A lightweight but powerful library for token indexing.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kaleidophon/token2index",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license="GPL",
python_requires=">=3.5.3",
keywords=[
"indexing",
"token",
"nlp",
"pytorch",
"tensorflow",
"numpy",
"w2i",
"t2i",
"stoi",
"itos",
"i2t",
"i2w",
"deep learning",
"seq2seq",
],
packages=find_packages(exclude=["docs", "dist"]),
)