summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 97abf834bc63dc61eef60f205f95a7354d4b9287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup

setup(
   name='stashley',
   version='2.0',
   description='a program used for archiving personalities using TOML files',
   author='msglm',
   author_email='msglm@techchud.xyz',
   packages=['src'],  #same as name
   install_requires=['yt-dlp', 'gallery-dl'], #external packages as dependencies
   )