-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 839 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 839 Bytes
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
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
readme = f.read()
with open('LICENSE', encoding="utf-8") as f:
license = f.read()
setup(
name='bodotokenizer',
version='0.1.1',
description='Package for Bodo Tokenizer',
long_description=readme,
long_description_content_type="text/markdown",
author='Maharaj Brahma',
author_email='mraj.brahma@gmail.com',
url='https://github.com/bodonlp/bodo-tokenizer',
license=license,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
python_requires=">=3.6",
keywords=['Bodo language', 'Bodo Tokenizer'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)