-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 759 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 759 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
33
34
# -*- coding: UTF-8 -*-
import os.path
from setuptools import setup
def readme( ):
with open( os.path.abspath(
os.path.join(
os.path.dirname( __file__ ),
'README.rst' ) ) ) as f:
return f.read( )
setup(
name = 'parallel-ml',
version = '0.0.2',
author = 'Sidhartha Parhi',
author_email = '[email protected]',
description = "Parallel ML utilities (GPU or CPU) that I can't find anywhere else",
long_description = readme( ),
url = "https://github.com/sidward14/parallel-ml",
packages = [
'parallel_ml',
],
dependency_links = [ ],
install_requires = [
'numpy >= 1.16',
#'torch >= 1.1.0',
'pandas >= 0.24.2',
'matplotlib >= 3.1.0', ],
include_package_data = True,
zip_safe = False
)