forked from alex/django-project-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 779 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 779 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
import os
from distutils.core import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="{{ project_name }}",
version="0.1",
author="",
author_email="",
description="{{ project_name }}, based on GeoNode",
long_description=(read('README.rst')),
# Full list of classifiers can be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
],
license="BSD",
keywords="{{ project_name }} geonode django",
url='https://github.com/{{ project_name }}/{{ project_name }}',
packages=['{{ project_name }}',],
install_requires=["geonode==2.0b30"],
include_package_data=True,
zip_safe=False,
)