-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (23 loc) · 869 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
import setuptools
from numpy.distutils.core import Extension, setup
with open("fodMC/version.py", "r") as fh:
version = {}
exec(fh.read(), version)
with open("README.md", "r") as fh:
name="fodMC",
long_description = fh.read()
setup(
name="fodMC",
version=version["__version__"],
author="Kai Trepte",
author_email="[email protected]",
description="Fermi-orbital descriptor Monte-Carlo",
url="https://github.com/pyflosic/fodMC",
license='APACHE2.0',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages = ['fodMC/pyfodmc','fodMC/gui','fodMC/lib'],
zip_safe=False,
ext_modules=[Extension(name='fodmc', sources=['fodMC/lib/fodmc.f90'], f2py_options=['--quiet'])]
)