forked from prashantsengar/ArrangePy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 783 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
import os
def readme():
with open('README.md') as file:
return file.read()
setup(name='arrangepy',
version='1.1.2',
description='Arrange your files in distinct folder, help you clean your PC',
long_description=readme(),
long_description_content_type = 'text/markdown',
keywords='arrange files windows cleaning tool open source prashant sengar',
url='https://github.com/prashantsengar/ArrangePy',
author='Prashant Sengar',
license='MIT',
packages=['arrangepy'],
install_requires=[
'flask',
],
entry_points={
'console_scripts': ['arrange=arrangepy.main:main'],
},
include_package_data=True,
zip_safe=False)