forked from uchicago-cs/deepdish
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (31 loc) · 1.02 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
from setuptools import setup
with open("requirements.txt") as f:
required = f.read().splitlines()
with open("requirements_dev.txt") as f:
required_dev = f.read().splitlines()
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
args = dict(
name="flammkuchen",
version="1.0.4",
url="https://github.com/portugueslab/flammkuchen",
description="Easy saving and loading of hdf5 files in python (forked from DeepDish)",
maintainer="Luigi Petrucco, Vilim Stih @portugueslab",
maintainer_email="[email protected]",
install_requires=required,
extras_require=dict(dev=required_dev),
packages=[
"flammkuchen",
],
license="BSD",
classifiers=CLASSIFIERS,
)
setup(**args)