-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
84 lines (71 loc) · 2.58 KB
/
setup.py
File metadata and controls
84 lines (71 loc) · 2.58 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
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
82
83
84
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
import re
import sys
from setuptools import setup, find_packages
def get_file(*paths):
path = os.path.join(*paths)
try:
with open(path, 'rb') as f:
return f.read().decode('utf8')
except IOError:
pass
def get_version():
init_py = get_file(os.path.dirname(__file__), 'GoogleFreeTrans', '__init__.py')
pattern = r"{0}\W*=\W*'([^']+)'".format('__version__')
version, = re.findall(pattern, init_py)
return version
def get_description():
init_py = get_file(os.path.dirname(__file__), 'GoogleFreeTrans', '__init__.py')
pattern = r'"""(.*?)"""'
description, = re.findall(pattern, init_py, re.DOTALL)
return description
def get_readme():
return get_file(os.path.dirname(__file__), 'README.rst')
def install():
setup(
name='GoogleFreeTrans',
version=get_version(),
description=get_description(),
long_description=get_readme(),
license='MIT',
author='wangzili',
author_email='wzlnot' '@' 'gmail.com',
url='https://github.com/ziliwang/GoogleFreeTrans',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: Freeware',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Education',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
packages=find_packages(exclude=['docs', 'tests']),
keywords='google translate translator',
install_requires=[
'requests', 'PyExecJS'
],
tests_require=[
'pytest',
],
)
if __name__ == "__main__":
if sys.argv[-1] == 'test':
test_requirements = [
'pytest',
'flake8',
'coverage'
]
try:
modules = map(__import__, test_requirements)
except ImportError as e:
err_msg = e.message.replace("No module named ", "")
msg = "%s is not installed. Install your test requirments." % err_msg
raise ImportError(msg)
os.system('py.test')
sys.exit()
install()