-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 788 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 788 Bytes
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
from distutils.core import setup
with open("README.md") as file:
ld = file.read()
setup(
name = 'objectutils',
packages = ['objectutils'],
version = '0.3.0',
license='MIT',
description = 'Utils that extend default dict|list operations',
long_description = ld,
long_description_content_type = "text/markdown",
author = 'Chmele',
url = 'https://github.com/Chmele/difflib/tree/main',
keywords = ['dict', 'json', 'jq', 'jmespath'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)