forked from team23/django_countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1018 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "countries",
version = "0.2.0",
description = 'Provides models for a "complete" list of countries',
author = 'David Danier',
author_email = '[email protected]',
url = 'https://github.com/ddanier/django_countries',
long_description=open('README.rst', 'r').read(),
packages = [
'countries',
'countries.management',
'countries.management.commands',
'countries.migrations',
],
package_data = {
'countries': ['fixtures/*', 'locale/*/LC_MESSAGES/*'],
},
install_requires = [
'Django >=1.2',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)