aboutsummaryrefslogtreecommitdiffstats
path: root/System/setup.py
blob: 6ec0825e51741273148e0931b5699662ed3ce0a5 (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",
)