-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.25 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.25 KB
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
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# https://stackoverflow.com/questions/53779509/upload-failed-403-invalid-or-non-existent-authentication-information-python - python setup.py sdist bdist_wheel - twine upload dist/*
setup(
name='SLUSpell',
version='0.2.0',
scripts=['setup'] ,
author="Mahdi Rahbar",
author_email="mahdirahbar01@gmail.com",
description="SLUSpell is an open-source spell checker that uses multiple techniques to find misspelled words.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/mahdirahbar/SLUSpell",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages= ["sluspell"],
package_data = {"sluspell":["*.pkl","*.py","*.html","*.js","*.css","*.svg","*.txt"]},
include_package_data=True,
install_requires=["flask", "numpy"],
entry_points={
"console_scripts": [
"sluspell=sluspell.main:main",
]
},
)