Skip to content
Snippets Groups Projects
Commit 374e51e2 authored by Joseph Weston's avatar Joseph Weston
Browse files

add setup.py and requirements file

parent 1f0e04fa
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100644
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name='adaptive',
description='Adaptively sample mathematical functions',
version='0.1a',
url='https://gitlab.kwant-project.org/qt/adaptive',
author='Adaptive authors',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License'
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3.6',
],
packages=['adaptive'],
install_requires=requirements,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment