Skip to content
Snippets Groups Projects
Commit 7ba8b305 authored by Rahil Doshi's avatar Rahil Doshi
Browse files

Update setup.py

parent 1581e0ff
Branches
Tags
No related merge requests found
Pipeline #70461 passed
from setuptools import setup, find_packages from setuptools import setup, find_packages
import versioneer
def get_cmdclass():
return versioneer.get_cmdclass()
setup( setup(
name='pymatlib', name='pymatlib',
# version='0.1.0', # Update this version as needed version='0.1.0', # Update this version as needed
version=versioneer.get_version(),
author='Rahil Doshi', # Replace with your name author='Rahil Doshi', # Replace with your name
author_email='rahil.doshi@fau.de', # Replace with your email author_email='rahil.doshi@fau.de', # Replace with your email
description='A Python based material library', description='A Python based material library',
...@@ -41,5 +36,4 @@ setup( ...@@ -41,5 +36,4 @@ setup(
], ],
}, },
include_package_data=True, # Include package data specified in MANIFEST.in include_package_data=True, # Include package data specified in MANIFEST.in
cmdclass=get_cmdclass(), # Add command class from versioneer
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment