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:
@@ -16,5 +16,5 @@ known_first_party = jsonfield
|
||||
branch = true
|
||||
source = jsonfield
|
||||
omit =
|
||||
jsonfield/encoder.py
|
||||
src/jsonfield/encoder.py
|
||||
tests
|
||||
|
||||
5
setup.py
5
setup.py
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user