-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (45 loc) · 1.95 KB
/
setup.py
File metadata and controls
executable file
·49 lines (45 loc) · 1.95 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
# Always prefer setuptools over distutils
from setuptools import setup
from pathlib import Path
# Define the directory that setup.py is in
here = Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='pyshell', # Required
version='1.0.0a6', # Required
description='A Linux subprocess module.', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/volitank/pyshell', # Optional
author='volitank', # Optional
author_email='blake@volitank.com', # Optional
classifiers=[ # Optional
# List of classifiers https://gist.github.com/nazrulworld/3800c84e28dc464b2b30cec8bc1287fc
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Operating System Kernels :: Linux',
'Topic :: System :: Systems Administration',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
keywords='python, shell, subprocess', # Optional
packages=['pyshell'], # Required
python_requires='>=3.6, <4',
install_requires=['pexpect'],
project_urls={ # Optional
'Documentation': 'https://volitank.com/pyshell',
'Source': 'https://github.com/volitank/pyshell',
},
)