-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·45 lines (40 loc) · 1.3 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 cep
import os
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
setup(
name='django-cep',
version=cep.__version__,
maintainer='Thiago Carvalho D Avila',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts=[],
url='https://github.com/staticdev/django-cep',
license='LICENSE',
description='Address fields autofill app for forms using brazilian CEP field.',
long_description=read('README.rst'),
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"Django >= 1.2.0"
],
)