Skip to content

Commit fea002c

Browse files
committed
🐍 Adds PyPi setup script and metadata configuration
1 parent 26258f1 commit fea002c

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[pycodestyle]
22
ignore = E266, E251, E265, E402
3+
4+
[metadata]
5+
description-file = .github/README.md

setup.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/usr/bin/env python3
2+
3+
4+
from setuptools import (find_packages, setup)
5+
6+
7+
with open(".github/README.md", "r") as fh:
8+
long_description = fh.read()
9+
10+
11+
setup(
12+
name = "watch_path",
13+
version = "0.0.2",
14+
author = "S0AndS0",
15+
author_email = "StrangerThanBland@gmail.com",
16+
description = "Simple wrapper for `os.stat`, calls callback function time-stamp changes",
17+
long_description = long_description,
18+
long_description_content_type = "text/markdown",
19+
url = "https://github.com/python-utilities/watch_path",
20+
download_url = 'https://github.com/python-utilities/watch_path/archive/v0.0.2.tar.gz',
21+
packages = find_packages(),
22+
classifiers = [
23+
'Development Status :: 3 - Alpha',
24+
'Intended Audience :: Developers',
25+
'Topic :: Software Development',
26+
'Programming Language :: Python :: 3',
27+
'License :: OSI Approved :: GNU Affero General Public License v3',
28+
'Operating System :: POSIX :: Linux',
29+
],
30+
)

0 commit comments

Comments
 (0)