1
0
mirror of https://github.com/rpkilby/jsonfield.git synced 2022-02-12 21:18:11 +03:00

Move package under src directory

This commit is contained in:
Ryan P Kilby
2020-02-14 18:50:07 -08:00
parent 08e2599a4b
commit 74d792364d
7 changed files with 4 additions and 3 deletions

View File

@@ -16,5 +16,5 @@ known_first_party = jsonfield
branch = true
source = jsonfield
omit =
jsonfield/encoder.py
src/jsonfield/encoder.py
tests

View File

@@ -1,10 +1,9 @@
from setuptools import setup
from setuptools import find_packages, setup
setup(
name='jsonfield',
version='4.0.0',
packages=['jsonfield'],
license='MIT',
include_package_data=True,
author='Brad Jasper',
@@ -14,6 +13,8 @@ setup(
url='https://github.com/rpkilby/jsonfield/',
description='A reusable Django field that allows you to store validated JSON in your model.',
long_description=open("README.rst").read(),
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['Django >= 2.2'],
classifiers=[
'Environment :: Web Environment',