forked from dmlc/minpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 900 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import os.path
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as f:
version = f.readline().strip()
setuptools.setup(
name='minpy',
version=version,
description='Pure NumPy practice with third-party operator integration.',
maintainer='DMLC',
maintainer_email='[email protected]',
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'scipy',
'pillow',
'semantic-version',
'six',
'h5py',
'PyYAML',
'tabulate',
],
data_files=[('', ['VERSION'])],
url='https://github.com/dmlc/minpy')
# print('\nGenerating default blacklist...')
# from minpy.utils.blacklist_generator import generate_default_blacklist
# generate_default_blacklist()
# print('Generating default blacklist successfully!')