File: setup.py

package info (click to toggle)
transifex-client 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 600 kB
  • ctags: 210
  • sloc: python: 2,761; makefile: 10
file content (42 lines) | stat: -rwxr-xr-x 1,264 bytes parent folder | download
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from codecs import open
from setuptools import setup

import txclib


def get_file_content(filename):
    with open(filename, 'r', encoding='UTF-8') as f:
        return f.read()

setup(
    name="transifex-client",
    version=txclib.__version__,
    entry_points={'console_scripts': ['tx=txclib.cmdline:main']},
    description="A command line interface for Transifex",
    long_description=get_file_content('README.rst'),
    author="Transifex",
    author_email="admin@transifex.com",
    url="https://www.transifex.com",
    license="GPLv2",
    dependency_links=[],
    setup_requires=[],
    install_requires=get_file_content('requirements.txt').splitlines(),
    tests_require=["mock"],
    data_files=[],
    test_suite="tests",
    zip_safe=False,
    packages=['txclib'],
    include_package_data=True,
    package_data={},
    keywords=('translation', 'localization', 'internationalization',),
    classifiers=[
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.5',
    ],
)