first commit
This commit is contained in:
commit
35491679b8
10 changed files with 503 additions and 0 deletions
20
setup.py
Normal file
20
setup.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
required = f.read().splitlines()
|
||||
|
||||
with open('README.md') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name='stodle',
|
||||
version='0.0.1',
|
||||
long_description=long_description,
|
||||
packages=find_packages(),
|
||||
url='https://github.com/WaylonWalker/stodle',
|
||||
license='MIT',
|
||||
author='Waylon Walker',
|
||||
author_email='quadmx08@gmail.com',
|
||||
description='Stop Idle for windows',
|
||||
install_requires=required,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue