-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.02 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.02 KB
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
import os
import stat
from codecs import open
from setuptools import setup, find_packages
from setuptools.command.install import install
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='ogcbrowser',
version='1.0',
description="ogcbrowser",
long_description='ogcbrowser',
url='https://github.com/SP7-Ritmare/',
author='Stefano Menegon',
author_email='stefano.menegon@ve.ismar.cnr.it',
license="GPL3",
# Full list of classifiers can be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
],
keywords="OGC",
packages=find_packages(),
install_requires=[
"django-overextends",
"django-annoying",
"django-rosetta",
"django-grappelli==2.4.10",
"djproxy",
"Django"
],
#
include_package_data = True,
setup_requires = [ "setuptools_git >= 0.3", ]
)