1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
from pathlib import Path
from setuptools import setup, find_packages
VERSION = '4.0.1'
tests_require = []
install_requires = []
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
setup(name='django-dynamic-fixture',
url='https://github.com/paulocheque/django-dynamic-fixture',
author="paulocheque",
author_email='paulocheque@gmail.com',
keywords='python django testing fixture',
description='A full library to create dynamic model instances for testing purposes.',
long_description_content_type='text/markdown',
long_description=long_description,
license='MIT',
classifiers=[
'Framework :: Django',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: PyPy',
],
version=VERSION,
install_requires=install_requires,
tests_require=tests_require,
test_suite='pytest',
extras_require={'test': tests_require},
packages=find_packages(),
)
|