-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 1.07 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='stackby',
version='0.3',
description='Instant coding answers via the command line',
long_description='python command line appliation to stack and cleanup files into different directories based on type, extension and created date',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Filesystems",
"License :: OSI Approved :: MIT License"
],
keywords='stack files directories cleanup',
author='Musthaq Ahamad',
author_email='[email protected]',
maintainer='Musthaq Ahamad',
maintainer_email='[email protected]',
url='https://github.com/haxzie/stackby',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'stackby = stackby.stackby:main',
]
},
install_requires=[
'fire','python-magic','libmagic'
]
)