-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (32 loc) · 1.14 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
from pathlib import Path
project_dir = Path(__file__).parent
install_requires = (project_dir / "requirements.txt").read_text().splitlines()
setup(
name="divide_lm",
version="0.1",
python_requires=">=3.6.0",
description="Utility for deviding a language model by another one",
author="Liyong Guo",
author_email='guonwpu@qq.com',
license="Apache-2.0 License",
url="https://github.com/k2-fsa/divide_lm",
packages=find_packages(),
package_data={
"":["requirements.txt"]
},
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Language Model",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
)