forked from fmder/ghalton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (24 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup, find_packages, Extension
ghalton_module = Extension("ghalton._ghalton_wrapper", sources=["src/Halton_wrap.cxx", "src/Halton.cpp"])
version = "0.6.1"
setup (name = "ghalton",
version = version,
packages=find_packages(),
author = "Francois-Michel De Rainville",
author_email = "[email protected]",
license = "LICENSE.txt",
description = "Generalized Halton number generator",
long_description = open("README.md",encoding="utf-8").read(),
url='https://github.com/fmder/ghalton',
download_url = "https://github.com/fmder/ghalton/tarball/master#egg=ghalton-%s" % version,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Topic :: Scientific/Engineering',
],
ext_modules = [ghalton_module],
)