-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (30 loc) · 1.09 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import poeditor
setup(
name='poeditor',
version=poeditor.__version__,
packages=find_packages(),
author="Charles Vallantin Dulac, Karl Wan Nan Wo",
author_email="[email protected], [email protected]",
description="Client Interface for POEditor API (https://poeditor.com).",
long_description=open('README.rst').read(),
include_package_data=True,
url='https://github.com/sporteasy/python-poeditor',
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
"Topic :: Software Development :: Localization",
],
install_requires=['requests'],
license='MIT',
test_suite="nose.collector",
)