nafuma/setup.py

12 lines
429 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2022-04-07 17:05:52 +02:00
setup(name='nafuma',
2022-07-08 17:46:15 +02:00
version='0.4',
2022-04-07 17:05:52 +02:00
description='Analysis tools for inorganic materials chemistry at the NAFUMA-group at the University of Oslo',
url='https://github.com/rasmusthog/nafuma',
author='Rasmus Vester Thøgersen, Halvor Høen Hval',
2022-04-07 17:05:52 +02:00
author_email='code@rasmusthog.me',
license='MIT',
packages=find_packages(),
zip_safe=False)