diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..4e2539b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include README.md +include LICENSE* + +recursive-include dcf * diff --git a/setup.py b/setup.py index 3027d8b..6c54514 100644 --- a/setup.py +++ b/setup.py @@ -11,11 +11,21 @@ def get_requirements(): setup( - name='dcf', - version='0.5', - description='Django Classifieds Application', - url='https://github.com/inoks/dcf', author='Inoks ', author_email='inoks@mail.ru', + description='Django Classifieds Application', install_requires=get_requirements(), + keywords='django classified development bootstrap', + license='MIT', + name='dcf', + url='https://github.com/inoks/dcf', + version='0.5', + classifiers=[ + 'Development Status :: 3 - Beta', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ] )