11 lines
429 B
Python
11 lines
429 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='nafuma',
|
|
version='0.3',
|
|
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',
|
|
author_email='code@rasmusthog.me',
|
|
license='MIT',
|
|
packages=find_packages(),
|
|
zip_safe=False)
|