aboutsummaryrefslogtreecommitdiffstats
path: root/System/setup.py
blob: a32c353f9d6f058c8a8be1807e16810a37cd8d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup

setup(
    name='Pendulum',
    version='0.1.0',    
    description='A package to run commands on remote servers',
    url='https://github.com/UMN-EE4951W-Lamperski/pendulum',
    author='EE 4951W Team',
    author_email='',
    packages=['pendulum'],
    classifiers=[
        'Development Status :: 1 - Planning',
        'Intended Audience :: Science/Research',
    ],
    python_requires=">=3.8",
)