-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.11 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
from setuptools import setup
setup(
name='textra',
version='0.6',
description='Machine translation for Everyone',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/GitHub30/textra',
project_urls={ 'Bug Tracker': 'https://github.com/GitHub30/textra/issues' },
author='TexTra',
author_email='funaox@gmail.com',
platforms="any",
license='MIT',
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="TexTra translation python",
install_requires=['requests', 'requests-oauthlib'],
py_modules=['textra'],
entry_points={
'console_scripts': [
'trans = textra:trans'
]
}
)
# Publish commands
# https://packaging.python.org/tutorials/packaging-projects/
#pip install --upgrade pip build twine
#python3 -m build
#python3 -m twine upload dist/*