forked from lokalise/python-lokalise-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.29 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.29 KB
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
from setuptools import setup, find_packages
from os import path
from lokalise._version import __version__
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="python-lokalise-api",
version=__version__,
author="Ilya Bodrov",
author_email="bodrovis@protonmail.com",
description="Official Python interface for the Lokalise API v2",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lokalise/python-lokalise-api",
keywords='lokalise api client',
license='MIT',
packages=find_packages(exclude=['tests*']),
package_data={
'lokalise': ['py.typed'],
},
package_dir={'lokalise': 'lokalise'},
platforms=['Any'],
install_requires=['requests>2,<3'],
tests_require=['pytest', 'vcrpy', 'pytest-vcr', 'pytest-cov'],
classifiers=[
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)