-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 726 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 726 Bytes
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
import pathlib
from setuptools import setup, find_packages
HERE: str = pathlib.Path(__file__).parent
setup(
name='pyi18n-v2',
version='1.2.2',
description='Simple and easy to use internationalization'
'library inspired by Ruby i18n',
long_description=(HERE / "README.md").read_text(),
long_description_content_type="text/markdown",
author='Piotr Markiewicz',
keywords=['pyi18n'],
license='MIT License',
author_email='sectasy0@gmail.com',
url='https://github.com/sectasy0/pyi18n',
packages=find_packages(),
install_requires=['PyYAML>=5.4'],
entry_points={
'console_scripts': [
'pyi18n-tasks=pyi18n.pyi18n_tasks:cli',
],
},
)