forked from Maroussia/isnalyser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 732 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='isnalyser',
version='0.1.0',
description='Create isnad graphs automatically.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires=">=3.5", # python version
install_requires= ["pandas>=0.24.2", "graphviz>=0.11.1", "matplotlib>=2.0.0", "numpy>=1.12.0"], # dependencies and their versions
url='https://github.com/dhakarat/isnalyser',
author='Maroussia Bednarkiewicz, Stefan Wezel, Álvaro Tejero Cantero',
author_email='maroussia.b@gmail.com',
include_package_data=True,
package_data = {
'' : ['*.csv']}
)