Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
Signed-off-by: NxPKG <[email protected]>
  • Loading branch information
NxPKG authored Feb 9, 2024
1 parent d8bd409 commit 88603e6
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from setuptools import setup, find_packages

setup(
name='scriptit',
version='1.0.0',
description='A collection of tools for writing interactive terminal applications',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Md Sulaiman',
author_email='[email protected]',
url='https://github.com/khulnasoft-lab/scriptit',
packages=find_packages(),
python_requires='>=3.8',
install_requires=[
# Add any dependencies required by your project here
],
extras_require={
'dev': [
'pytest>=6',
'pytest-cov>=2.10.1',
'pre-commit>=3.0.4,<4.0',
'ruff==0.2.0',
'setuptools>=60',
'setuptools-scm>=8.0',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
)

0 comments on commit 88603e6

Please sign in to comment.