-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 1.2 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
#! /usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import print_function
import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="sympound",
version="0.6.0", #edit version in __init__.py
author="Esukhia development team",
author_email="esukhiadev@gmail.com",
description="Python implementation of SymSpell Compound",
license="MIT",
keywords="spell check",
url="https://github.com/Esukhia/sympound-python",
packages=find_packages(),
long_description=read('README.md'),
long_description_content_type="text/markdown",
project_urls={
'Source': 'https://github.com/Esukhia/sympound-python',
'Tracker': 'https://github.com/Esukhia/sympound-python/issues',
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
],
python_requires='>=3',
)