|
1 | | -#!/usr/bin/env python |
2 | | -from setuptools import setup |
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +from setuptools import setup, find_packages |
3 | 3 |
|
4 | 4 | version = '0.5' |
5 | 5 |
|
| 6 | +REQUIREMENTS = ['requests'] |
| 7 | + |
| 8 | +CLASSIFIERS = [ |
| 9 | + 'Development Status :: 2 - Pre-Alpha', |
| 10 | + 'Environment :: Web Environment', |
| 11 | + 'Intended Audience :: Developers', |
| 12 | + 'License :: OSI Approved :: BSD License', |
| 13 | + 'Operating System :: OS Independent', |
| 14 | + 'Programming Language :: Python', |
| 15 | + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
| 16 | + 'Topic :: Software Development', |
| 17 | + 'Topic :: Software Development :: Libraries :: Application Frameworks', |
| 18 | + "Programming Language :: Python :: 2", |
| 19 | + "Programming Language :: Python :: 2.6", |
| 20 | + "Programming Language :: Python :: 2.7", |
| 21 | +] |
| 22 | + |
6 | 23 | setup( |
7 | 24 | name="python-amazon-mws", |
8 | 25 | version=version, |
9 | 26 | description="A python interface for Amazon MWS", |
10 | 27 | author="Paulo Alvarado", |
11 | 28 | author_email="commonzenpython@gmail.com", |
12 | 29 | url="http://github.com/czpython/python-amazon-mws", |
13 | | - packages=['mws'], |
14 | | - download_url = 'https://github.com/czpython/python-amazon-mws/tarball/0.3', |
15 | | - classifiers = [ |
16 | | - "Development Status :: 4 - Beta", |
17 | | - "Intended Audience :: Developers", |
18 | | - "Operating System :: OS Independent", |
19 | | - "Topic :: Internet", |
20 | | - "Natural Language :: English", |
21 | | - "Programming Language :: Python :: 2", |
22 | | - "Programming Language :: Python :: 2.5", |
23 | | - "Programming Language :: Python :: 2.6", |
24 | | - "Programming Language :: Python :: 2.7"], |
25 | | - install_requires=[ |
26 | | - 'requests', |
27 | | - ], |
| 30 | + packages=find_packages(), |
| 31 | + platforms=['OS Independent'], |
| 32 | + license='LICENSE.txt', |
| 33 | + install_requires=REQUIREMENTS, |
| 34 | + classifiers=CLASSIFIERS, |
| 35 | + include_package_data=True, |
| 36 | + zip_safe=False |
28 | 37 | ) |
0 commit comments