-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (34 loc) · 1.23 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
version = __import__("separatedvaluesfield").__version__
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "README.rst")) as f:
README = f.read()
setup(
name="django-separatedvaluesfield",
version=version,
description="Custom field for Django to separate multiple values "
"in database with a separator and retrieve them as list",
long_description=README,
author="Florent Messa",
author_email="[email protected]",
url="http://github.com/thoas/django-separatedvaluesfield",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Utilities",
],
)