-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (35 loc) · 1.24 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
39
40
41
42
43
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='mediaviz',
version='0.1.2',
description='Visualize Networks With Force Atlas 2 Layout',
long_description = long_description,
long_description_content_type="text/markdown",
url='https://github.com/Tahsin-Mayeesha/Mediaviz',
author='Tahsin Mayeesha',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
install_requires=[ "fa2l",
"networkx<2.0.0",
"numpy", "matplotlib",'python-louvain',"adjustText"
],
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest'
],
zip_safe=False)