-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
42 lines (37 loc) · 1.18 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from codecs import open
from os import path, system
from re import compile as re_compile
__version__="3.0"
here = path.abspath(path.dirname(__file__))
def read(filename):
kwds = {"encoding": "utf-8"} if sys.version_info[0] >= 3 else {}
with open(filename, **kwds) as fp:
contents = fp.read()
return contents
setup(
name="NuPyCEE",
version=__version__,
author="Benoit Cote",
#author_email="", # <-- Direct complaints to this address.
description="NuPyCEE codes",
long_description=read(path.join(here, "README.md")),
url="https://github.com/NuGrid/NuPyCEE",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
],
keywords="astronomy",
install_requires=[
"numpy",
],
)