|
| 1 | +import sysconfig |
| 2 | +from setuptools import setup, find_packages |
| 3 | + |
| 4 | +install_requires = [] |
| 5 | + |
| 6 | +if not sysconfig.get_platform().startswith("mingw"): |
| 7 | + install_requires.append('windows-curses>=2.2.0,<3.0.0; platform_system == "Windows"') |
| 8 | + |
| 9 | +setup( |
| 10 | + name='pick', |
| 11 | + version='2.5.0', |
| 12 | + packages=find_packages(where='src'), |
| 13 | + package_dir={'': 'src'}, |
| 14 | + install_requires=install_requires, |
| 15 | + description="Pick an option in the terminal with a simple GUI", |
| 16 | + author="wong2", |
| 17 | + author_email="wonderfuly@gmail.com", |
| 18 | + license="MIT", |
| 19 | + url="https://github.com/aisk/pick", |
| 20 | + keywords=["terminal", "gui"], |
| 21 | + classifiers=[ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Environment :: Console", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + "Operating System :: OS Independent", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.8", |
| 30 | + "Programming Language :: Python :: 3.9", |
| 31 | + "Programming Language :: Python :: 3.10", |
| 32 | + "Programming Language :: Python :: 3.11", |
| 33 | + "Programming Language :: Python :: 3.12", |
| 34 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 35 | + "Topic :: Terminals" |
| 36 | + ], |
| 37 | +) |
0 commit comments