public
Description: Fields pack for django framework.
Homepage: http://code.svetlyak.ru
Clone URL: git://github.com/svetlyak40wt/django-fields.git
Click here to lend your support to: django-fields and make a donation at www.pledgie.com !
django-fields / setup.py
100644 27 lines (24 sloc) 0.91 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
from setuptools import setup, find_packages
setup(
    name = 'django-fields',
    version = '0.1.0',
    description = 'Django-fields is an application which includes different kinds of models fields.',
    keywords = 'django apps tools collection',
    license = 'New BSD License',
    author = 'Alexander Artemenko',
    author_email = 'svetlyak.40wt@gmail.com',
    url = 'http://github.com/svetlyak40wt/django-fields/',
    install_requires = ['pycrypto', ],
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Environment :: Plugins',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python',
        'Topic :: Software Development :: Libraries :: Python Modules',
    ],
    package_dir = {'': 'src'},
    packages = ['django_fields'],
    include_package_data = True,
)