-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 957 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
import sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from numpy.distutils.misc_util import get_numpy_include_dirs
setup(
name="TAS-Transmission-Atom-Surface",
version="0.0.3",
description="TAS - Transmission spectra with Atom-Surface interactions",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="BSD3",
keywords=["van der Waals", "atom surface interactions", "alkali atoms",
"spectroscopy", "scientific", "physics", "laser spectroscopy",
"thin atomic vapours"],
# url="To-do-add-later",
download_url="https://github.com/thermal-vapours/TAS-Transmission-Atom-Surface/archive/0.0.3.tar.gz",
author = 'Tom Peyrot and Nikola Sibalic',
author_email = '[email protected]',
packages=['tas'],
zip_safe=False,
)