forked from jbochi/cep
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (41 loc) · 1.24 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
#!/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.1.1",
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=["BeautifulSoup"],
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",
"Topic :: Internet",
],
long_description=long_description
)