-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 748 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
from setuptools import setup
setup(name='pytac',
version='0.1', # defined in the __init__ module
description='A python tool to work with ESO TAC',
url='--',
author='Romain Laugier',
author_email='romain.laugier@kuleuven.be',
license='',
classifiers=[
'Development Status :: 3 - pre-Alpha',
'Intended Audience :: Professional Astronomers',
'Topic :: Astronomical instrumentation engineering :: System control',
'Programming Language :: Python :: 3.7'
],
packages=['pytac'],
install_requires=[
'numpy', 'sympy', 'scipy', 'matplotlib', 'control', 'graphviz', 'art'
],
include_package_data=True,
zip_safe=False)