forked from abel-research/ampscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 860 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
# -*- coding: utf-8 -*-
"""
Copyright: Joshua Steer 2020, [email protected]
"""
from setuptools import setup, find_packages
from os import path, walk
def readme():
with open('README.md') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
return f.read().split('\n')
setup(name='ampscan',
version='0.3.0',
description=('Package for analysis of '
'surface scan data for P&O applications'),
long_description=readme(),
author='Joshua Steer',
author_email='[email protected]',
license='MIT',
include_package_data=True,
packages=find_packages(),
python_requires='>=3.5', # Your supported Python ranges
install_requires=requirements(),
url = 'https://ampscan.readthedocs.io/en/latest/',
zip_safe=False,)