-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 723 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 723 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import setuptools
def read(*paths):
with open(os.path.join(*paths), "r") as filename:
return filename.read()
def main():
setuptools.setup(
name = "timeout_lock",
version = "1.0_2019-04-08",
description = "Control lock with Timeout on acquire",
long_description = (read("README.rst")),
url = "https://github.com/pacman2011/timeout_lock",
author = "Shane Boissevain",
author_email = "shaneboissevain@gmail.com",
license = "GPLv3",
py_modules = ["timeout_lock"],
)
if __name__ == "__main__":
main()