forked from django-ve/django-helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.23 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
39
40
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
setup(
author="Alex Clark",
author_email="aclark@aclark.net",
maintainer='Leonardo J. Caballero G.',
maintainer_email='leonardocaballero@gmail.com',
name='helloworld',
version='0.1',
description='A Django hello world example ',
long_description=LONG_DESCRIPTION,
url='https://github.com/django-ve/helloworld',
license='GPL',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'Django==1.9.4',
],
packages=find_packages(exclude=["project","project.*"]),
include_package_data=True,
zip_safe = False
)