-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
24 lines (24 loc) · 869 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 distutils.core import setup
setup(
name = 'ImPSCAD',
packages = ['ImPSCAD'],
version = '0.3.0',
license ='MIT',
description = 'Create a unique csv file from a out file from PSCAD/EMTDC simulations',
author = 'Luis Arthur Novais Haddad',
author_email = 'luis.novais@engenharia.ufjf.br',
url = 'https://github.com/LuisArthurNH',
download_url = 'https://github.com/LuisArthurNH/ImPSCAD/archive/ImPSCAD_v_0.3.0.tar.gz',
keywords = ['PSCAD', 'Variables', 'Import','.CSV','python','MATLAB'],
install_requires=[
'pandas',
'pathlib',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)