-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 711 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='csv_manager',
version='0.11.9',
description='A simple CSV importer/exporter with plotting capabilities with matplotlib',
long_description=readme(),
long_description_content_type="text/markdown",
keywords='csv export import plot matplotlib',
url='https://github.com/AdelKS/csv_manager',
author='Adel KARA SLIMANE',
author_email='adel.ks@zegrapher.com',
license='The Unlicense',
packages=['csv_manager'],
install_requires=[
'matplotlib', 'py_expression_eval'
],
include_package_data=True,
zip_safe=False)