forked from miguelzuma/work-in-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 785 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
import os
from distutils.core import setup
# TODO: consider using setuptools instead of distutils:
# https://packaging.python.org/guides/tool-recommendations/
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="work-in-class",
version="dev",
description=("Tools to work with hi_class and MontePython"),
license="GPL3",
keywords="class hi_class montepython",
url="https://github.com/miguelzuma/work-in-class",
packages=['work_in_class', 'work_in_class.plot_class'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Physics"
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)