Setuptools related

This commit is contained in:
Adrian 2014-11-03 10:00:53 +01:00
parent 3fb0b885a7
commit 586ffee56b
3 changed files with 13 additions and 12 deletions

17
.gitignore vendored
View file

@ -2,9 +2,6 @@
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
@ -44,11 +41,9 @@ coverage.xml
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Other generic files to ignore
*~
*.lock
*.DS_Store
*.swp
*.out

5
MANIFEST.in Normal file
View file

@ -0,0 +1,5 @@
include LICENSE
include README.md
recursive-include markdownx/static *
recursive-include markdownx/templates *
recursive-include markdownx/locale *

View file

@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
import os
if 'vagrant' in str(os.environ):
@ -7,6 +7,7 @@ if 'vagrant' in str(os.environ):
setup(
name='django-markdownx',
version='0.1.1',
packages=find_packages(),
description='Simple markdown editor (with live preview and images uploads) built for Django',
url='https://github.com/adi-/django-markdownx',
author='Adrian Drzewicki',