forked from transifex/transifex-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·81 lines (70 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import glob
from codecs import BOM
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py
from txclib import get_version
readme_file = open(u'README.rst')
long_description = readme_file.read()
readme_file.close()
if long_description.startswith(BOM):
long_description = long_description.lstrip(BOM)
long_description = long_description.decode('utf-8')
package_data = {
'': ['LICENSE', 'README.rst'],
'txclib': ['*.pem'],
}
scripts = ['tx']
install_requires = []
try:
import json
except ImportError:
install_requires.append('simplejson')
extra_args = {}
import platform
if platform.system() == 'Windows':
import py2exe
from py2exe.build_exe import py2exe as build_exe
class MediaCollector(build_exe):
# See http://crazedmonkey.com/blog/python/pkg_resources-with-py2exe.html
def copy_extensions(self, extensions):
build_exe.copy_extensions(self, extensions)
self.copy_file(
'txclib/cacert.pem',
os.path.join(self.collect_dir, 'txclib/cacert.pem')
)
self.compiled_files.append('txclib/cacert.pem')
extra_args = {
'console': ['tx'],
'options': {'py2exe': {'bundle_files': 1}},
'zipfile': None,
'cmdclass': {'py2exe': MediaCollector},
}
setup(
name="transifex-client",
version=get_version(),
scripts=scripts,
description="A command line interface for Transifex",
long_description=long_description,
author="Transifex",
author_email="[email protected]",
url="https://www.transifex.com",
license="GPLv2",
dependency_links = [
],
setup_requires = [
],
install_requires = install_requires,
tests_require = ["mock", ],
data_files=[
],
test_suite="tests",
zip_safe=False,
packages=['txclib', 'txclib.packages', 'txclib.packages.ssl_match_hostname'],
include_package_data=True,
package_data = package_data,
keywords = ('translation', 'localization', 'internationalization',),
**extra_args
)