-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 990 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
30
31
32
33
import os
import glob
from setuptools import setup, find_packages
from numpy import get_include
with open("README.rst") as f:
long_desc = f.read()
ind = long_desc.find("\n")
long_desc = long_desc[ind + 1:]
setup(
name="bregman",
packages=find_packages(),
version="0.1.0a1",
install_requires=["numpy>=1.5"],
author="Alexander Urban",
author_email="[email protected]",
maintainer="Alexander Urban",
license="MIT",
description="Split Bregman",
long_description=long_desc,
classifiers=[
"Programming Language :: Python :: 2.7",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
],
include_dirs = [get_include()],
scripts=glob.glob(os.path.join("scripts","*.py"))
)