-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 856 Bytes
/
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
from setuptools import setup, find_packages
# crée le package et définit ses métadonnées
setup(
name = 'tokenizer',
version = '1.3',
plateformes = 'Windows',
packages = find_packages(),
packages_dir = {'' : 'tokenizer'},
author = 'Manolo Sardo',
description = 'Python tokenizer',
download_url = 'https://github.com/Manolo-dev/tokenizer',
keywords = ['token', 'tokenization', 'language', 'comprehension'],
long_description = open('README.md').read(),
classifiers = [
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: Windows',
'Topic :: Tokenization',
'Topic :: Making language',
'Topic :: Language comprehension'
]
)