-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
25 lines (22 loc) · 832 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
from setuptools import setup, find_packages
import eigenpro3
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='eigenpro3',
version=eigenpro3.__version__,
author='Amirhesam Abedsoltan, Parthe Pandit',
author_email='[email protected], [email protected]',
description='Fast solver for learning general large scale kernel models',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/EigenPro/EigenPro3',
project_urls = {
"Bug Tracker": "https://github.com/EigenPro/EigenPro3/issues"
},
license='Apache-2.0 license',
packages=find_packages(),
install_requires=requirements,
)