-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.19 KB
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
from setuptools import setup
from pathlib import Path
import ufid
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="user-friendly-id",
version=ufid.__version__,
description="Collection of functions to randomly and securely generate commonly used IDs.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords="generator, strings, string, str, generate, user, user-friendly, ID, IDs, secure, safe",
author="Remy Charlot <remy@personalstock.com>",
author_email="remy@personalstock.com",
url="https://github.com/lapinvert/user-friendly-id/",
license="BSD",
packages=["ufid"],
zip_safe=False,
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
],
)