-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1004 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 1004 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
"""Package installer."""
import os
from setuptools import setup
from setuptools import find_packages
LONG_DESCRIPTION = ''
if os.path.exists('README.md'):
with open('README.md') as fp:
LONG_DESCRIPTION = fp.read()
scripts = []
setup(
name='lion-sp',
version='0.1.1',
description='LInear Optimization Networks - shortest path algorithms',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author='Nina Wiedemann',
author_email=('nwiedemann@uos.de'),
license="GPLv3",
url='https://github.com/NinaWie/lion',
install_requires=['numpy', 'numba', 'scipy', 'coverage'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages('.'),
python_requires='>=3.6',
scripts=scripts
)