blob: ba7ce8a5208fd0415968f9fe72ec15942e9e33fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python3
from setuptools import setup, find_packages
import fg21sim as pkg
setup(
name=pkg.__pkgname__,
version=pkg.__version__,
description=pkg.__description__,
long_description=open("README.rst").read(),
author=pkg.__author__,
author_email=pkg.__author_email__,
url=pkg.__url__,
license=pkg.__license__,
packages=find_packages(exclude=("tests", "docs")),
scripts=[
"bin/healpix2hpx",
"bin/hpx2healpix",
],
)
|