-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 943 Bytes
/
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name ='mbox-to-json',
version ='1.0.5',
author ='Prakhar Sharma, Adrita Bhattacharya',
author_email ='[email protected]',
url ='https://github.com/PS1607/mbox-to-json',
description ='MBOX to JSON Converter',
long_description=long_description,
long_description_content_type='text/markdown',
license ='MIT',
packages = find_packages(),
entry_points ={
'console_scripts': [
'mbox-to-json = src.main:main'
]
},
classifiers =(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
keywords ='MBOX to JSON Converter',
install_requires = requirements,
zip_safe = False
)