20 lines
446 B
Python
20 lines
446 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION = (0, 0, 2)
|
|
VERSION_STR = ".".join([str(x) for x in VERSION])
|
|
|
|
setup(
|
|
name="eco",
|
|
version=VERSION_STR,
|
|
description="Eco ...",
|
|
long_description="Eco ../",
|
|
author="Paul Scherrer Institute",
|
|
author_email="@psi.ch",
|
|
url="https://github.com/paulscherrerinstitute/eco",
|
|
packages=find_packages(),
|
|
requires=["numpy", "scipy", "colorama"],
|
|
)
|