-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 759 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 759 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
try:
from setuptools import setup, find_packages
except ImportError:
print('setuptools not available. Try:\n\tpip install setuptools --user')
import sys
import platform
if platform.system() == 'Darwin':
import os
os.system("export MACOSX_DEPLOYMENT_TARGET=10.10")
install_requires = ["jpype1","numpy"]
if sys.argv[1] == 'develop':
install_requires.append("pytest")
setup(
name='autoplot',
version='0.9.2',
author='Jeremy Faden',
author_email='faden@cottagesystems.com',
packages=find_packages(),
url='https://github.com/autoplot/python/',
license='LICENSE.txt',
description='Interface to Autoplot Java library',
long_description=open('README.rst').read(),
install_requires=install_requires
)