Skip to content

Commit ec17ac1

Browse files
authored
Merge pull request #4 from davidslusser/docs
updated setup and project layout
2 parents 9ca2aa1 + c6628e2 commit ec17ac1

File tree

9 files changed

+4
-5
lines changed

9 files changed

+4
-5
lines changed

MANIFEST.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
include README.md
22
include requirements.txt
3-
include setup.py
4-
graft signalcontrol
53
global-exclude *.py[co]

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from setuptools import setup
3-
import signalcontrol
3+
from src import signalcontrol
44

55
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as readme:
66
README = readme.read()
@@ -15,7 +15,8 @@
1515
description='A django app to allow dynamic control of signals',
1616
long_description=README,
1717
long_description_content_type='text/markdown',
18-
packages=['signalcontrol'],
18+
packages=['signalcontrol', 'signalcontrol.migrations'],
19+
package_dir={'': 'src'},
1920
version=version,
2021
license=signalcontrol.__license__,
2122
author=signalcontrol.__author__,

signalcontrol/__init__.py renamed to src/signalcontrol/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
__title__ = 'django-signalcontrol'
10-
__version__ = '0.0.3'
10+
__version__ = '0.0.4'
1111
__author__ = 'David Slusser'
1212
__email__ = 'dbslusser@gmail.com'
1313
__license__ = 'GPL-3.0'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)