Skip to content

Commit a1ec5c9

Browse files
committed
Code was moved to 'src'.
Added setup.py and MANIFEST.in.
1 parent f912802 commit a1ec5c9

File tree

11 files changed

+31
-1
lines changed

11 files changed

+31
-1
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
*.pyc
22
.*.swp
3+
*.egg-info
34
database.db
4-
5+
build
6+
dist

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include README.md

setup.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
from setuptools import setup, find_packages
2+
setup(
3+
name = 'django-fields',
4+
version = '0.1.0',
5+
description = 'Django-fields is an application which includes different kinds of models fields.',
6+
keywords = 'django apps tools collection',
7+
license = 'New BSD License',
8+
author = 'Alexander Artemenko',
9+
author_email = '[email protected]',
10+
url = 'https://github.com/svetlyak40wt/django-fields/',
11+
install_requires = ['pycrypto', ],
12+
classifiers=[
13+
'Development Status :: 2 - Pre-Alpha',
14+
'Environment :: Plugins',
15+
'Framework :: Django',
16+
'Intended Audience :: Developers',
17+
'License :: OSI Approved :: BSD License',
18+
'Programming Language :: Python',
19+
'Topic :: Software Development :: Libraries :: Python Modules',
20+
],
21+
package_dir = {'': 'src'},
22+
packages = ['django_fields'],
23+
include_package_data = True,
24+
)
25+
26+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)