-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (27 loc) · 1021 Bytes
/
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
import os
import sys
from setuptools import setup, find_packages
version = '0.1.4'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(name='android-localization-helper',
version=version,
description=('Android localization helper'),
long_description='\n\n'.join((read('README.md'), read('CHANGELOG'))),
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
keywords='android localization translation translate',
author='Jordan Jozwiak',
author_email='[email protected]',
url='https://github.com/jordanjoz1/android-localization-helper',
license='MIT',
py_modules=['translation_helper'],
namespace_packages=[],
install_requires = [],
entry_points={
'console_scripts': [
'android-localization-helper = translation_helper:main']
},
include_package_data = False)