Skip to content

Commit

Permalink
feat: add setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
inclinedadarsh committed Jun 16, 2024
1 parent 9997ac4 commit 1beba1c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

setup(
name='inclinet',
version='0.1.0',
packages=find_packages(),
install_requires=[
'numpy>=1.26.4',
],
author='Adarsh Dubey',
author_email='dubeyadarshmain@gmail.com',
description='A simple neural network implementation using Python and Numpy',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/inclinedadarsh/inclinet', # Update with your project's URL if available
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.11',
)

0 comments on commit 1beba1c

Please sign in to comment.