mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-05-17 17:21:05 +00:00
Setuptools related
This commit is contained in:
parent
3fb0b885a7
commit
586ffee56b
3 changed files with 13 additions and 12 deletions
17
.gitignore
vendored
17
.gitignore
vendored
|
|
@ -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
5
MANIFEST.in
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
include LICENSE
|
||||
include README.md
|
||||
recursive-include markdownx/static *
|
||||
recursive-include markdownx/templates *
|
||||
recursive-include markdownx/locale *
|
||||
3
setup.py
3
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue