parent
f43c46ef2f
commit
73188feb90
3 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
||||
from setuptools import setup |
||||
|
||||
|
||||
setup( |
||||
name='arcadeutils', |
||||
version='0.1', |
||||
description='Collection of utilities written in Python for working with various arcade binaries.', |
||||
author='DragonMinded', |
||||
license='Public Domain', |
||||
packages=[ |
||||
'arcadeutils', |
||||
], |
||||
install_requires=[ |
||||
req for req in open('requirements.txt').read().split('\n') if len(req) > 0 |
||||
], |
||||
) |
Loading…
Reference in new issue