-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
60 lines (56 loc) · 1.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Natural Language :: Korean
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Typing :: Typed
Topic :: Software Development
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Information Analysis
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
# import grpc_tools
#
# setuptools.setup(
# cmdclass={
# 'build_proto_modules': grpc_tools.command.BuildPackageProtos,
# }
# )
setuptools.setup(
name="bareunpy",
version="1.6.5",
author="Gihyun YUN",
author_email="gih2yun@baikal.ai",
description="The bareun python API library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bareun.ai/",
download_url="https://pypi.python.org/pypi/bareunpy",
project_urls={
"Bug Tracker": "https://github.com/bareun-nlp/bareunpy/issues",
# "Documentation": get_docs_url(),
"Source Code": "https://github.com/bareun-nlp/bareunpy",
},
license='BSD',
platform='Independent',
packages=setuptools.find_packages(),
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
python_requires='>=3.6',
)