-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 1.01 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
from setuptools import setup
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='PulseShape',
version='0.1.4',
packages=['PulseShape'],
python_requires='>=3.6',
install_requires=['numpy>=1.19', 'scipy>=1.5', 'matplotlib>=3.0'],
url='https://gitlab.com/mtessmer/PulseShape',
project_urls = {'Source': 'https://gitlab.com/mtessmer/PulseShape'},
license='GNU GPLv3',
license_files=('LICENSE'),
author='Maxx Tessmer',
author_email='[email protected]',
keywords=['pulse shape', 'EPR', 'DEER', 'PELDOR', 'AWG'],
description='A pulse shaping program for EPR!',
long_description = readme,
long_description_content_type = 'text/markdown',
classifiers=['License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',]
)