-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 972 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 972 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
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open('README.md', 'r', encoding='utf-8') as f:
README = f.read()
setuptools.setup(
name='PyBackground',
version='0.1.2',
description='A lightweight scheduler that runs tasks in the background',
author='Yi Zhang',
author_email='yizhang.dev@gmail.com',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/yzhang-dev/PyBackground',
download_url='https://github.com/yzhang-dev/PyBackground',
packages=[
'pybackground'
],
keywords=[
'background-jobs',
'background-thread',
'tasks',
'background'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
license='MIT',
python_requires='>=3.7',
)