forked from rominf/pyffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.04 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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(name='pyffs',
version='1.0',
description='Python implementation of Leveshtein automata',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/antoinewdg/pyffs',
author='Antoine Wendlinger',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Text Processing :: Linguistic",
],
)