-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
37 lines (35 loc) · 1.37 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
import io
import platform
import re
import setuptools
with io.open("README.md", encoding="utf-8") as fr:
long_description = fr.read()
if __name__ == "__main__":
setuptools.setup(
name="LexiLang",
version="1.0.4",
author="Piero Toffanin",
author_email="[email protected]",
maintainer="Piero Toffanin",
maintainer_email="[email protected]",
description="Simple, fast dictionary-based language detector",
long_description=long_description,
long_description_content_type="text/markdown",
license="AGPLv3",
url="https://github.com/LibreTranslate/LexiLang",
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
],
packages=["lexilang"],
package_data={"lexilang": ["data/words.pickle"]}
)