-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.31 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
from setuptools import setup, find_packages
with open('README.md', 'r') as r_file:
desc = r_file.read()
LICENSE_TEXT = "License :: OSI Approved :: "
LICENSE_TEXT += "GNU Library or Lesser General Public License (LGPL)"
setup(
name="recursive_size",
version="1.2",
packages=find_packages(),
author="Deuteronomy Works",
author_email="[email protected]",
description="Recursively get the size of folder",
long_description=desc,
long_description_content_type="text/markdown",
keywords="size, get_size, get size, recursive size, recursive_size",
url="https://github.com/deuteronomy-works/recursive_size",
project_urls={
"Bug Tracker":
"https://github.com/deuteronomy-works/recursive_size/issues",
"Documentation":
"https://github.com/deuteronomy-works/recursive_size/wiki",
"Source Code": "https://github.com/deuteronomy-works/recursive_size",
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
LICENSE_TEXT,
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)