-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (44 loc) · 1.47 KB
/
setup.py
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
from setuptools import setup, find_packages
version = '2.5'
setup(name='kmd',
version=version,
description='An interpreter framework',
long_description=open('README.rst').read() + '\n' +
open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='command line, command shell, shell, interpreter, REPL',
author='Stefan H. Holek',
author_email='[email protected]',
url='https://github.com/stefanholek/kmd',
license='PSF-2.0',
packages=find_packages(
exclude=[
'kmd.tests',
],
),
include_package_data=False,
zip_safe=False,
install_requires=[
'rl >= 3.2',
],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
project_urls={
'Documentation': 'https://kmd.readthedocs.io/en/stable/',
},
extras_require={
'docs': [
'sphinx == 5.3.0',
'sphinx-rtd-theme == 1.0.0',
],
},
)