-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 764 Bytes
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
from setuptools import setup, find_packages
setup(
name='Array_Sqrt',
version='1.0.0',
description='Function that returns the square root',
author='Bhargav Jethwa, Mithil Dave, Nirav Patel, Parth Kanakiya, Raj Shah',
author_email='bjethwa@ncsu.edu',
url='https://github.com/Nirav1929/A_Good_Repo',
license='MIT',
packages=find_packages(),
# include = ['Code']),
long_description='...',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Data Structure',
],
install_requires=[
'numpy==1.21.2',
]
)