-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 984 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.rst", "r") as ff:
long_description = ff.read()
setuptools.setup(
name = "bsfc",
version = "1.0.1",
author = "Francesco Sciortino and Norman Cao",
author_email = "[email protected]",
description = "Bayesian Spectral Fitting Code (BSFC)",
long_description=long_description,
#long_description_content_type="text/markdown",
maintainer = "Francesco Sciortino",
maintainer_email = "[email protected]",
url = "https://github.com/Maplenormandy/bsfc",
packages = setuptools.find_packages(),
requires = ["matplotlib","scipy", "numpy (>=1.5)","pymultinest","emcee","MDSplus",
"gptools","eqtools","profiletools"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)