File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1
1
[pycodestyle]
2
2
ignore = E266, E251, E265, E402
3
+
4
+ [metadata]
5
+ description-file = .github/README.md
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments