-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 765 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 765 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
28
29
30
31
32
from setuptools import find_packages, setup
setup(
name='myConvexHull',
version='1.0.0',
author='Amar Fadil',
author_email='13520103@std.stei.itb.ac.id',
description=' '.join([
'Custom convex hull algorithm for 2D points',
'using Decrease and Conquer strategy.',
]),
url='https://github.com/marfgold1/stima-tucil2',
package_dir={"": "src"},
packages=find_packages(where='src'),
include_package_data=True,
zip_safe=False,
install_requires=[
'matplotlib',
'pandas',
'numpy',
],
extras_require={
'datasets': [
'scikit-learn'
],
'tests': [
'scipy',
'scikit-learn'
],
},
python_requires='>=3.7',
)