-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 976 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 976 Bytes
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
# coding=utf-8
from setuptools import find_packages, setup
__author__ = 'Andrey Musikhin'
__version__ = '0.1'
setup(
name='django-geonames-parser',
version=__version__,
description='Django GeoNames parser',
author=__author__,
author_email='melomansegfault@gmail.com',
url='https://github.com/Seg-mel/django-geonames-parser',
license='MIT',
packages=find_packages(exclude=('example',)),
include_package_data=True,
keywords=['django', 'geonames', 'parser'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)