-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (28 loc) · 977 Bytes
/
pyproject.toml
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
[project]
name = "django-nanoid-field"
license = { text = "MIT" }
authors = [{ name = "Gokhan Ozturk", email = "[email protected]" }]
description = "Next generation NanoID in Django Model IDs"
keywords = ['django', 'nanoid', 'django-field']
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
readme = "README.md"
dependencies = ["nanoid", "django>=2"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/goztrk/django-nanoid-field"
Documentation = "https://github.com/goztrk/django-nanoid-field"
Repository = "https://github.com/goztrk/django-nanoid-field.git"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["nanoid_field"]
[tool.setuptools.dynamic]
version = { attr = "nanoid_field.__version__" }