-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 940 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
ritzLavelyPy - a Python package for handling Ritzwoller-Lavely polynomials
:copyright:
Samarth G. Kashyap ([email protected]), 2021
:license:
MIT License
'''
# Importing setuptools monkeypatches some of distutils commands so things like
# 'python setup.py develop' work. Wrap in try/except so it is not an actual
# dependency. Inplace installation with pip works also without importing
# setuptools.
import os
import sys
import math
import argparse
from setuptools import setup
from setuptools import find_packages
from setuptools.command.test import test as TestCommand
setup(
name='ritzLavelyPy',
version='1.0.0',
packages=find_packages("."), # Finds every folder with __init__.py in it. (Hehe)
install_requires=[
"numpy", "scipy"
],
# entry_points={'console_scripts': [
# 'RLP = ritzLavelyPy.classes.ritzLavelyPoly:main']
# }
)