forked from jakul/python-transifex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 961 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
from setuptools import setup, find_packages
from transifex import VERSION
setup(
name='python-transifex',
version=VERSION,
description='A python api to transifex',
long_description=open('README.rst').read(),
author='Craig Blaszczyk',
author_email='[email protected]',
url='https://github.com/jakul/python-transifex',
download_url='https://github.com/jakul/python-transifex/downloads',
license='BSD',
packages=find_packages(),
tests_require=['mock',
],
install_requires=['requests',
],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)