Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pranhav16 authored Mar 7, 2024
1 parent da58c38 commit e477040
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import setup

setup(
name='toolTest',
version='1.0',
description='Example tool',
author='Pranhav Sundararajan',
author_email='[email protected]',
url='https://github.com/pranhav16/toolTest',
py_modules=['toolTest'],
install_requires=[
'csvkit',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
)

0 comments on commit e477040

Please sign in to comment.