Skip to content

Commit 797cf21

Browse files
+ setup.py
1 parent 047b5ac commit 797cf21

3 files changed

Lines changed: 29 additions & 1 deletion

File tree

.github/CODEOWNERS.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Whitespace-only changes.

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from setuptools import setup, find_packages
2+
3+
with open('README.md', 'r') as f:
4+
long_description = f.read()
5+
6+
VERSION = '0.0.1'
7+
DESCRIPTION = 'Threading module extension'
8+
9+
# Setting up
10+
setup(
11+
name = 'threads',
12+
version = VERSION,
13+
author = 'caffeine-addictt (Jun Xiang)',
14+
author_email = '<junxiangng63@gmail.com>',
15+
description = DESCRIPTION,
16+
long_description_content_type = 'text/markdown',
17+
long_description = long_description,
18+
packages = find_packages(where = 'src'),
19+
install_requires = [],
20+
keywords = ['python', 'threading', 'multiprocessing'],
21+
classifiers = [
22+
'Development Status :: 1 - Planning',
23+
'Intended Audience :: Developers',
24+
'Programming Language :: Python :: 3',
25+
'Operating System :: Unix',
26+
'Operating System :: MacOS :: MacOS X',
27+
'Operating System :: Microsoft :: Windows',
28+
],
29+
)

0 commit comments

Comments
 (0)