-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 703 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name="simple-cities",
version="0.0.1",
description="Simple Alternative to GeoDjango",
long_description="Simple Alternative to GeoDjango",
keywords="django, cities, geo",
author="Jared Morse <jarcoal@gmail.com>",
author_email="jarcoal@gmail.com",
url="https://github.com/jarcoal/django-simple-cities",
license="BSD",
packages=["cities"],
zip_safe=False,
install_requires=[],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
)