9 lines
292 B
Python
9 lines
292 B
Python
from setuptools import setup
|
|
|
|
setup(name='pygwin',
|
|
packages=['pygwin'],
|
|
version='0.0.1',
|
|
description='A library for creating Python applications.',
|
|
install_requires=['tempfile','pywin32','pickle','pygame','inputs','pydub'],
|
|
author='themixray',
|
|
license='MIT')
|