-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (42 loc) · 1.6 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
43
import setuptools
setuptools.setup(
name="filehandlers",
version="3.1.0",
license="MIT",
description="Package containing code to help in working with files.",
packages=setuptools.find_packages(),
author="Reece Dunham",
author_email="[email protected]",
url="https://github.com/RDIL/filehandlers",
project_urls={
"Documentation": "https://docs.rdil.rocks/libraries/filehandlers/",
"Source Code": "https://github.com/RDIL/filehandlers",
"Bug Tracker": "https://github.com/RDIL/filehandlers/issues",
},
long_description=open("README.md", mode="r").read(),
long_description_content_type="text/markdown",
include_package_data=True,
zip_safe=False,
keywords=["file", "files", "handler", "handlers", "io"],
python_requires=">=3.3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
"Typing :: Typed",
],
)