-
-
Notifications
You must be signed in to change notification settings - Fork 287
/
setup.py
34 lines (31 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
from setuptools import find_packages, setup
with open("requirements.txt") as f:
required_packages = f.read().splitlines()
with open("README.md") as f:
long_description = f.read()
setup(
name="argostranslate",
version="1.9.6",
description="Open-source neural machine translation library based on OpenNMT's CTranslate2",
long_description=long_description,
long_description_content_type="text/markdown",
author="Argos Open Technologies, LLC",
author_email="[email protected]",
url="https://www.argosopentech.com",
project_urls={
"Website": "https://www.argosopentech.com",
"Documentation": "https://argos-translate.readthedocs.io/en/latest/",
"GitHub": "https://github.com/argosopentech/argos-translate",
"Forum": "https://community.libretranslate.com/c/argos-translate/5",
},
python_requires=">=3.5",
packages=find_packages(),
install_requires=required_packages,
include_package_data=True,
scripts=["bin/argos-translate", "bin/argospm"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
],
)