We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb4cd4 commit e399b03Copy full SHA for e399b03
setup.py
@@ -0,0 +1,31 @@
1
+#!/usr/bin/env python
2
+
3
+try:
4
+ from setuptools import setup, find_packages
5
+except ImportError:
6
+ from ez_setup import use_setuptools
7
+ use_setuptools()
8
9
10
11
+setup(
12
+ name = "django-partial-load",
13
+ version = "0.1.1.alfa",
14
+ author = "Callegari Davide",
15
+ author_email = "[email protected]",
16
+ description = "Partially load pages loading block list",
17
+ long_description = open("README").read(),
18
+ license = "All rights reserved",
19
+ url = "https://bitbucket.org/brokenseal/django-partial-load",
20
+ packages=find_packages(),
21
+ #install_requires= [], # I wish I could use pip better
22
+ classifiers = [
23
+ "Development Status :: 1 - Alpha",
24
+ "Environment :: Web Environment",
25
+ "Intended Audience :: Developers",
26
+ "License :: All rights reserved",
27
+ "Operating System :: OS Independent",
28
+ "Programming Language :: Python",
29
+ "Framework :: Django",
30
+ ]
31
+)
0 commit comments