forked from thiagosm/cep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.28 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
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
import codecs
import os
try:
from setuptools import setup, find_packages
except ImportError:
raise
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
if os.path.exists("README.rst"):
long_description = codecs.open("README.rst", "r", "utf-8").read()
else:
long_description = "See http://pypi.python.org/jbochi/cep"
setup(
name="cep",
version="0.3.1.0",
description="Pesquisa de CEPs via site dos Correios",
author="Juarez Bochi",
author_email="[email protected]",
url="https://github.com/jbochi/cep",
platforms=["any"],
license="MIT",
packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
install_requires=["requests"],
tests_require=["nose"],
test_suite="nose.collector",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: Portuguese (Brazilian)",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Internet",
],
long_description=long_description
)