-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (59 loc) · 2.19 KB
/
setup.py
File metadata and controls
64 lines (59 loc) · 2.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
#
# setup.py
# FileSystemPro
#
# Created by Heitor Bisneto on 12/11/2025.
# Copyright © 2023–2025 hbisneto. All rights reserved.
#
# This file is part of FileSystemPro.
# FileSystemPro is free software: you can redistribute it and/or modify
# it under the terms of the MIT License. See LICENSE for more details.
#
from setuptools import setup, Extension, find_packages
with open("README.md", "r") as fh:
readme = fh.read()
project_urls = {
'Homepage': 'https://github.com/hbisneto/FileSystemPro',
'Repository': 'https://github.com/hbisneto/FileSystemPro.git',
}
setup(
name = 'filesystempro',
version = '3.0.0.0',
url = 'https://github.com/hbisneto/FileSystemPro',
license = 'MIT License',
author = 'Heitor Bisneto',
author_email = 'heitor.bardemaker@live.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
],
description = u'FileSystemPro is a powerful toolkit designed to handle file and directory operations with ease and efficiency across various operating systems.',
install_requires = [
'requests',
],
long_description = readme,
long_description_content_type = "text/markdown",
keywords=[
'filesystem', 'file-operations', 'directory-management', 'cross-platform',
'file-io', 'pathlib-wrapper', 'compression-utils', 'file-watcher',
'os-agnostic', 'linux', 'macos', 'windows'
],
packages=find_packages(),
platforms = 'any',
python_requires= '>=3.10',
project_urls=project_urls,
)