-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
49 lines (45 loc) · 1.62 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
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
"""
strsync - Automatically translate and synchronize .strings files from defined base language.
Copyright (c) 2015 metasmile cyrano905@gmail.com (github.com/metasmile)
repo : https://github.com/metasmile/strsync
"""
import codecs
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
with open('test-requirements.txt') as f:
test_required = f.read().splitlines()
setup(
name="strsync",
version="1.8",
packages=[
'strsync',
],
entry_points = {
"console_scripts": ['strsync = strsync.strsync:main']
},
author="Metasmile @ StellarStep, Inc.",
author_email="cyrano905@gmail.com",
description="strsync - Automatically translate and synchronize localizable resource files from defined base language for Xcode.",
long_description=codecs.open(
'README.rst', encoding='UTF-8'
).read(),
license="MIT",
keywords="translation google strsync strings localizable l10n i18n ios xcode osx mac",
url="https://github.com/metasmile/strsync",
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Internationalization",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
],
install_requires=required,
tests_require=test_required
)