forked from bsc-wdc/dislib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.52 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
import setuptools
# read the contents of the README.md file to get a long_description
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
readme = f.read()
long_description = readme[:readme.find('## Contents')].strip()
setuptools.setup(
name="dislib",
version=open('VERSION').read().strip(),
author="Barcelona Supercomputing Center",
author_email="[email protected]",
description="The distributed computing library on top of PyCOMPSs",
long_description=long_description,
long_description_content_type='text/markdown',
url="http://dislib.bsc.es",
project_urls={
'Documentation': 'http://dislib.bsc.es',
'Source': 'https://github.com/bsc-wdc/dislib',
'Tracker': 'https://github.com/bsc-wdc/dislib/issues',
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
],
install_requires=[
"scikit-learn",
"numpy",
"scipy",
"cvxpy"
],
scripts=["bin/dislib", "bin/dislib_cmd.py"],
)