-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (37 loc) · 1.41 KB
/
setup.py
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
42
import io
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.rst"), encoding="utf-8") as fp:
README = fp.read()
with io.open(os.path.join(here, "VERSION")) as version_file:
VERSION = version_file.read().strip()
setup(
name="django-fakery",
version=VERSION,
url="/~https://github.com/fcurella/django-fakery/",
author="Flavio Curella",
author_email="flavio.curella@gmail.com",
description="A model instances generator for Django",
long_description=README,
license="MIT",
packages=find_packages(exclude=["docs", "tests", "tests.*"]),
package_data={"django_fakery": ["py.typed"]},
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={"pytest11": ["django_fakery = django_fakery.plugin"]},
install_requires=["Faker>=10.0,<11.0", "Django>=3.2", "six>=1.10.1"],
python_requires=">=3.8",
test_suite="tests.runtests.runtests",
)