forked from mindsnacks/django-versionfield
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (32 loc) · 984 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name="django-versionfield2",
version="0.5.0",
url='https://github.com/tonioo/django-versionfield',
license='BSD',
description="A DB Independent Custom Django Field for storing Version numbers for fast indexing",
author='Antoine Nguyen',
author_email='tonio@ngyn.org',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django<=1.10.99',
'six>=1.9.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)