-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
34 lines (32 loc) · 1.01 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
from setuptools import setup, find_packages
version = '0.3.0'
setup(
name='django-fields',
version=version,
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=[
'django',
'pycrypto',
'nose',
'django-nose==1.4.4',
'tox',
],
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,
test_suite="runtests.runtests",
)