-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
24 lines (23 loc) · 922 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
from setuptools import setup, find_packages
from pathlib import Path
from emailnetwork.version import __version__
setup(name='emailnetwork',
version=__version__,
description='Network graphing utilities for email/mailbox (.mbox) data',
long_description=(Path(__file__).parent/'README.md').read_text(),
long_description_content_type='text/markdown',
url='http://github.com/onlyphantom/emailnetwork',
author='Samuel Chan',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=['matplotlib', 'networkx'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
zip_safe=False,
python_requires='>=3.7')