-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 773 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 773 Bytes
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
#!/usr/bin/env python3
"""
Created on Thu Jun 1 08:33:01 2017
@author: Jackson Anderson
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='Ferro',
version='0.3.0',
author='Jackson Anderson',
author_email='jda4923@rit.edu',
url = 'https://github.com/JAnderson419/Ferro',
download_url = 'https://github.com/JAnderson419/Ferro/archive/0.3.0.tar.gz',
packages=['ferro',],
license='Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International',
description='Manipulation and Modeling of Ferroelectric Test Data',
long_description=open('README.md').read(),
install_requires=[
'scipy',
'numpy',
'matplotlib',
'mpldatacursor',
],
)