Skip to content
Permalink
8325465df0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@kowalp
Latest commit 0a3e1dc Oct 20, 2023 History
1 contributor

Users who have contributed to this file

16 lines (15 sloc) 393 Bytes
from setuptools import setup
NAME = 'metapy'
setup(
name=NAME,
version='0.0.1',
packages=[NAME],
include_package_data=True,
setup_requires=['setuptools_scm'],
author='Peter Kowal',
author_email='kowalp@rpi.edu',
description='Metamodel-Driven Java Server',
license='MIT',
install_requires=['py4j', 'psutil', 'h5py'],
platforms=['Windows', 'Linux']
)