-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.15 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
36
37
38
from setuptools import setup, find_packages
with open('./README.md') as f:
txt = f.read()
setup(name='kfutils',
version='0.1.7',
description='A tool for common data file operation.',
long_description=txt,
long_description_content_type='text/markdown',
author='Koushik Naskar',
author_email='[email protected]',
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console', 'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Shells'
],
keywords='File Operations',
project_urls={'Source Code': 'https://github.com/Koushikphy/kfutils'},
zip_safe=True,
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'csaps',
'tabulate'
],
entry_points={
'console_scripts': [
'kfutils = kfutils.cli:main',
],
}
)