-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
51 lines (44 loc) · 1.58 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def readme():
with open('README.txt') as f:
return f.read()
version = '1.4.1'
setup(
name='django-comuni-italiani',
packages=find_packages(),
# package_data={'': ['']},
include_package_data=True,
version=version,
install_requires=[
'Django>=1.7',
],
description='A simple django (>= 1.7) app for Italian cities and regions',
long_description=readme(),
author='Andrea Briganti',
author_email='[email protected]',
url='https://github.com/kbytesys/django_comuni_italiani',
download_url='https://github.com/kbytesys/django_comuni_italiani/tarball/v1.3.0',
keywords=['django', 'comuni', 'regioni', 'province'],
license='GNU LGPL v2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Natural Language :: Italian',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)