-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 682 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
# or read from a requirements.txt file
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name='file_info',
version='1.0',
description='A Python script that can display some information about files and directories',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Abdulrahman Alnaseer',
author_email='abdd199719@gmail.com',
url='https://github.com/abdalrohman/file_info_python',
license='GNU V3.0',
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)