filey/setup.py

35 lines
967 B
Python
Raw Permalink Normal View History

2021-02-20 01:28:03 +00:00
from setuptools import setup, find_packages
with open('README.md', 'r') as fob:
long_description = fob.read()
2021-08-12 18:28:02 +00:00
with open('requirements.txt', 'r') as fob:
requirements = fob.readlines()
2021-02-20 01:28:03 +00:00
setup(
name='filey',
version='0.0.2',
author='Kenneth Sabalo',
author_email='kennethsantanasablo@gmail.com',
2021-08-12 18:28:02 +00:00
url='https://github.com/kendfss/filey',
2021-02-20 01:28:03 +00:00
packages=['filey'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description=long_description,
long_description_content_type='text/markdown',
keywords='utilities operating path file system',
2021-02-20 01:28:03 +00:00
license='MIT',
2021-08-12 18:28:02 +00:00
requires=requirements,
# requires=[
# "audio_metadata",
# "dill",
# "filetype",
# "send2trash",
# "sl4ng",
# "pypeclip",
# ],
python_requires='>3.9',
2021-02-20 01:28:03 +00:00
)